Fix bug in llama stack build; SERVER_DEPENDENCIES were dropped

This commit is contained in:
Ashwin Bharambe 2024-11-11 20:12:13 -08:00
parent 506b99242a
commit f4426f6a43
2 changed files with 8 additions and 18 deletions

View file

@ -150,12 +150,12 @@ fi
# Detect platform architecture
ARCH=$(uname -m)
if [ "$ARCH" = "arm64" ] || [ "$ARCH" = "aarch64" ]; then
PLATFORM="--platform linux/arm64"
PLATFORM="--platform linux/arm64"
elif [ "$ARCH" = "x86_64" ]; then
PLATFORM="--platform linux/amd64"
PLATFORM="--platform linux/amd64"
else
echo "Unsupported architecture: $ARCH"
exit 1
echo "Unsupported architecture: $ARCH"
exit 1
fi
set -x