From fd981ba231e4ccc4f4ec4400eda7b628582485c1 Mon Sep 17 00:00:00 2001 From: Pulse Monitor Date: Thu, 11 Sep 2025 16:42:17 +0000 Subject: [PATCH] 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. --- install.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/install.sh b/install.sh index 87391bbbf..edf005993 100755 --- a/install.sh +++ b/install.sh @@ -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"