We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 013cd61 commit a57d2f0Copy full SHA for a57d2f0
contrib/nas/nas-asustor.sh
@@ -23,11 +23,11 @@ if [ $PKGBRANCH = "master" ]; then
23
fi
24
25
if [ $PKGARCH = "x86-64" ]; then GOOS=linux GOARCH=amd64 ./build
26
-elif [ $PKGARCH = "armv7" ]; then GOOS=linux GOARCH=arm GOARM=7 ./build
+elif [ $PKGARCH = "arm" ]; then GOOS=linux GOARCH=arm GOARM=7 ./build
27
elif [ $PKGARCH = "arm64" ]; then GOOS=linux GOARCH=arm64 ./build
28
-elif [ $PKGARCH = "x86" ]; then GOOS=linux GOARCH=386 ./build
+elif [ $PKGARCH = "i386" ]; then GOOS=linux GOARCH=386 ./build
29
else
30
- echo "Specify PKGARCH=x86-64, armv7, arm64 or x86"
+ echo "Specify PKGARCH=x86-64, arm, arm64 or i386"
31
exit 1
32
33
0 commit comments