Skip to content

Commit 5316d8f

Browse files
committed
fix
1 parent 14deb28 commit 5316d8f

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

pack.sh

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,9 @@ for line in $build_list; do
2626
if [ $arch == "riscv64" ]; then
2727
continue
2828
fi
29+
if [ $arch == "mips64" ] && [ $os == "openbsd" ]; then
30+
continue
31+
fi
2932

3033
CGO_ENABLED=0 GOOS=$os GOARCH=$arch go build -ldflags="-s -w"
3134
if [ $? -ne 0 ]; then
@@ -55,4 +58,3 @@ done
5558
zip pack.zip pack/ -r
5659

5760
echo "all done"
58-

0 commit comments

Comments
 (0)