Skip to content
This repository has been archived by the owner on Mar 3, 2023. It is now read-only.

adding nostyle #3527

Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 8 additions & 8 deletions docker/scripts/compile-platform.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down