Skip to content

Commit a57d2f0

Browse files
committed
Arches names fix
1 parent 013cd61 commit a57d2f0

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

contrib/nas/nas-asustor.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,11 +23,11 @@ if [ $PKGBRANCH = "master" ]; then
2323
fi
2424

2525
if [ $PKGARCH = "x86-64" ]; then GOOS=linux GOARCH=amd64 ./build
26-
elif [ $PKGARCH = "armv7" ]; then GOOS=linux GOARCH=arm GOARM=7 ./build
26+
elif [ $PKGARCH = "arm" ]; then GOOS=linux GOARCH=arm GOARM=7 ./build
2727
elif [ $PKGARCH = "arm64" ]; then GOOS=linux GOARCH=arm64 ./build
28-
elif [ $PKGARCH = "x86" ]; then GOOS=linux GOARCH=386 ./build
28+
elif [ $PKGARCH = "i386" ]; then GOOS=linux GOARCH=386 ./build
2929
else
30-
echo "Specify PKGARCH=x86-64, armv7, arm64 or x86"
30+
echo "Specify PKGARCH=x86-64, arm, arm64 or i386"
3131
exit 1
3232
fi
3333

0 commit comments

Comments
 (0)