From 2b1cfff00e80ffed7687743f2ff40b3ffe76806b Mon Sep 17 00:00:00 2001 From: Pulse Monitor Date: Tue, 12 Aug 2025 19:18:10 +0000 Subject: [PATCH] fix: remove unnecessary frontend dist copy from build script - Frontend is embedded in the binary since v4.3.0 - No need to copy dist files to release archives - Reduces archive size --- build-release.sh | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/build-release.sh b/build-release.sh index cbc6c156d..43f3e98e2 100755 --- a/build-release.sh +++ b/build-release.sh @@ -99,8 +99,7 @@ done cp "$BUILD_DIR/pulse-linux-amd64" "$universal_staging/bin/pulse" chmod +x "$universal_staging/bin/pulse" -# Copy common files -cp -r frontend-modern/dist "$universal_staging/bin/frontend-modern/" +# Copy common files (frontend is now embedded, no need to copy dist) cp README.md LICENSE install.sh "$universal_staging/" 2>/dev/null || true echo "$VERSION" > "$universal_staging/VERSION"