Skip to content

Commit

Permalink
fix TARGET_PLATFORM in setup.sh
Browse files Browse the repository at this point in the history
The setup_conda.sh script expects "Linux-x86_64" or "MacOSX-x86_64", not "linux" or "mac"
  • Loading branch information
JGreenlee committed Oct 23, 2024
1 parent 863161e commit 0f95878
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions bin/setup.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 0f95878

Please sign in to comment.