From bd29c20f4cf0bedcee82606b270a07425e3933b6 Mon Sep 17 00:00:00 2001 From: Kevin Yue Date: Sun, 25 Feb 2024 22:08:28 +0800 Subject: [PATCH] Fix CI --- Makefile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 02fdcc9..54f0a0a 100644 --- a/Makefile +++ b/Makefile @@ -32,7 +32,9 @@ clean-tarball: # Create a tarball, include the cargo dependencies if OFFLINE is set to 1 tarball: clean-tarball - cd apps/gpgui-helper && pnpm install && pnpm build + if [ $(BUILD_FE) -eq 1 ]; then \ + cd apps/gpgui-helper && pnpm install && pnpm build; \ + fi # Remove node_modules to reduce the tarball size rm -rf apps/gpgui-helper/node_modules