Skip to content
This repository was archived by the owner on Oct 11, 2023. It is now read-only.

Commit be93067

Browse files
committed
Fix the build scripts for arm64
1 parent 4185d5f commit be93067

File tree

2 files changed

+7
-2
lines changed

2 files changed

+7
-2
lines changed

scripts/package

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@ if [ "$ROOTFS" != "0" ]; then
77
./package-rootfs
88
fi
99
./package-initrd
10-
./package-installer
11-
./package-iso
1210

11+
if [ "$ARCH" == "amd64" ]; then
12+
./package-installer
13+
./package-iso
14+
fi

scripts/release-arm64

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,3 +27,6 @@ for file in $(ls dist/artifacts/); do
2727
;;
2828
esac
2929
done
30+
31+
cat dist/images | sed 's/^/docker push /' >> dist/publish.sh
32+
chmod 755 dist/publish.sh

0 commit comments

Comments
 (0)