From 0f958780b8c3510ebd1df8e445b1e813faa8fa38 Mon Sep 17 00:00:00 2001 From: Jack Greenlee Date: Wed, 23 Oct 2024 11:55:38 -0400 Subject: [PATCH] fix TARGET_PLATFORM in setup.sh The setup_conda.sh script expects "Linux-x86_64" or "MacOSX-x86_64", not "linux" or "mac" --- bin/setup.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bin/setup.sh b/bin/setup.sh index d451d47..754218e 100644 --- a/bin/setup.sh +++ b/bin/setup.sh @@ -11,9 +11,9 @@ rm -rf e-mission-server # determine platform if [[ "$OSTYPE" == "linux-gnu"* ]]; then - TARGET_PLATFORM="linux" + TARGET_PLATFORM="Linux-x86_64" elif [[ "$OSTYPE" == "darwin"* ]]; then - TARGET_PLATFORM="mac" + TARGET_PLATFORM="MacOSX-x86_64" else echo "Unsupported platform $OSTYPE" exit 1