Skip to content

Commit

Permalink
Return working setup_config.sh
Browse files Browse the repository at this point in the history
  • Loading branch information
jpfleischer committed Oct 19, 2024
1 parent 478482c commit f1bbd2c
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion .docker/setup_config.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,15 @@
set -e
echo "About to start conda update, this may take some time..."
source setup/setup_conda.sh Linux-x86_64
ARCH=$(uname -m)
if [ "$ARCH" == "x86_64" ]; then
source setup/setup_conda.sh Linux-x86_64
elif [ "$ARCH" == "aarch64" ]; then
source setup/setup_conda.sh Linux-aarch64
else
echo "Unsupported architecture: $ARCH"
exit 1
fi

# now install the emission environment
source setup/setup.sh

Expand Down

0 comments on commit f1bbd2c

Please sign in to comment.