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
This commit is contained in:
Pulse Monitor
2025-08-12 19:18:10 +00:00
parent ccf7967dec
commit 2b1cfff00e
+1 -2
View File
@@ -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"