You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@heron.apache.org by jo...@apache.org on 2020/05/29 20:14:54 UTC

[incubator-heron] branch master updated: adding nostyle (#3527)

This is an automated email from the ASF dual-hosted git repository.

joshfischer pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-heron.git


The following commit(s) were added to refs/heads/master by this push:
     new 59a3c4a  adding nostyle (#3527)
59a3c4a is described below

commit 59a3c4aba5c1c3bc0ebc7b69b0ca66d72b3b2250
Author: Josh Fischer <jo...@joshfischer.io>
AuthorDate: Fri May 29 15:04:07 2020 -0500

    adding nostyle (#3527)
---
 docker/scripts/compile-platform.sh | 16 ++++++++--------
 1 file changed, 8 insertions(+), 8 deletions(-)

diff --git a/docker/scripts/compile-platform.sh b/docker/scripts/compile-platform.sh
index 69dd36f..34c4403 100755
--- a/docker/scripts/compile-platform.sh
+++ b/docker/scripts/compile-platform.sh
@@ -37,21 +37,21 @@ echo "Extracting source"
 tar -C . -xzf $SOURCE_TARBALL
 
 if [[ "$TARGET_PLATFORM" =~ "ubuntu" ]]; then
-  CONFIG_PLATFORM=ubuntu
+  CONFIG_PLATFORM=ubuntu_nostyle
 elif [[ "$TARGET_PLATFORM" =~ "centos" ]]; then
-  CONFIG_PLATFORM=centos
+  CONFIG_PLATFORM=centos_nostyle
 elif [[ "$TARGET_PLATFORM" =~ "darwin" ]]; then
-  CONFIG_PLATFORM=darwin
+  CONFIG_PLATFORM=darwin_nostyle
 elif [[ "$TARGET_PLATFORM" =~ "debian" ]]; then
-  CONFIG_PLATFORM=debian
+  CONFIG_PLATFORM=debian_nostyle
 elif [[ "$TARGET_PLATFORM" =~ "ubuntu_nostyle" ]]; then
-  CONFIG_PLATFORM=ubuntu
+  CONFIG_PLATFORM=ubuntu_nostyle
 elif [[ "$TARGET_PLATFORM" =~ "centos_nostyle" ]]; then
-  CONFIG_PLATFORM=centos
+  CONFIG_PLATFORM=centos_nostyle
 elif [[ "$TARGET_PLATFORM" =~ "darwin_nostyle" ]]; then
-  CONFIG_PLATFORM=darwin
+  CONFIG_PLATFORM=darwin_nostyle
 elif [[ "$TARGET_PLATFORM" =~ "debian_nostyle" ]]; then
-  CONFIG_PLATFORM=debian
+  CONFIG_PLATFORM=debian_nostyle
 else
   echo "Unknown platform: $TARGET_PLATFORM"
   exit 1