fix: use correct binary path after build

The Makefile builds to ./pulse not bin/pulse. Updated the install script
to copy from the correct location.
This commit is contained in:
Pulse Monitor
2025-09-11 16:42:17 +00:00
parent 36f9e0625b
commit fd981ba231
+2 -2
View File
@@ -1816,8 +1816,8 @@ main() {
create_user
setup_directories
# Copy the built binary
cp bin/pulse "$INSTALL_DIR/bin/pulse"
# Copy the built binary (Makefile builds to ./pulse not bin/pulse)
cp pulse "$INSTALL_DIR/bin/pulse"
chmod +x "$INSTALL_DIR/bin/pulse"
chown pulse:pulse "$INSTALL_DIR/bin/pulse"