arm64 support (#35)

* Add arm64 build support thanks to @435vic
This commit is contained in:
Victor Javier
2018-10-10 10:20:56 -05:00
committed by Peter Squicciarini
parent dc75d7df46
commit c1bdb38d45
5 changed files with 38 additions and 3 deletions

View File

@@ -7,6 +7,9 @@ if [[ "$SHOULD_BUILD" == "yes" ]]; then
elif [[ "$BUILDARCH" == "ia32" ]]; then
cd VSCode-linux-ia32
tar czf ../VSCode-linux-ia32-${LATEST_MS_TAG}.tar.gz .
elif [[ "$BUILDARCH" == "arm64" ]]; then
cd VSCode-linux-arm64
tar czf ../VSCode-linux-arm64-${LATEST_MS_TAG}.tar.gz .
else
cd VSCode-linux-x64
tar czf ../VSCode-linux-x64-${LATEST_MS_TAG}.tar.gz .