Skip to content

Commit 09a3b13

Browse files
committed
fix(ci): enable CGO for bitwarden
1 parent f5fdd76 commit 09a3b13

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

scripts/build.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ build_wrapper() {
66
if [ "$1" == "windows" ]; then
77
windows_file_extension=".exe"
88
fi
9-
GOOS=$1 GOARCH=$2 CGO_ENABLED=0 go build -ldflags "-X 'github.com/mistweaverco/kuba/internal/lib/version.VERSION=${VERSION}'" -o "dist/kuba-$1-$2$windows_file_extension"
9+
GOOS=$1 GOARCH=$2 CGO_ENABLED=1 go build -ldflags "-X 'github.com/mistweaverco/kuba/internal/lib/version.VERSION=${VERSION}'" -o "dist/kuba-$1-$2$windows_file_extension"
1010
}
1111

1212
build_linux_arm64() {

0 commit comments

Comments
 (0)