Skip to content

Commit

Permalink
build: fix a script error
Browse files Browse the repository at this point in the history
  • Loading branch information
Mmx233 committed Jan 3, 2024
1 parent b1c422f commit 5ade0cd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ BuildDocker() {
for i in "${!OS_ARCHES[@]}"; do
os_arch=${OS_ARCHES[$i]}
os=${os_arch%%-*}
arch=${os_arch%%-*}
arch=${os_arch##*-}
export GOOS=$os
export GOARCH=$arch
go build -o ./$os/$arch/alist -ldflags="$docker_lflags" -tags=jsoniter .
Expand Down

0 comments on commit 5ade0cd

Please sign in to comment.