From e32004f53f4975c73cc959c05b6b1e15f0e101e2 Mon Sep 17 00:00:00 2001 From: vaalacat Date: Sun, 28 Apr 2024 17:40:58 +0000 Subject: [PATCH] fix: build --- build.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.sh b/build.sh index 85d8a53..8e0f440 100755 --- a/build.sh +++ b/build.sh @@ -2,7 +2,7 @@ bash ./codegen.sh mkdir -p dist rm -rf dist/* -cd www && pnpm install && pnpm build && cd .. +cd www && pnpm install --no-frozen-lockfile && pnpm build && cd .. echo "Building frp-panel full windows binaries..." CGO_ENABLED=0 GOOS=windows GOARCH=amd64 go build -o dist/frp-panel-amd64.exe cmd/frpp/*.go CGO_ENABLED=0 GOOS=windows GOARCH=arm64 go build -o dist/frp-panel-arm64.exe cmd/frpp/*.go