From 1c732dfe173c39351ff8889c6f12591c130aa431 Mon Sep 17 00:00:00 2001 From: SpudGunMan Date: Sat, 18 Oct 2025 12:47:17 -0700 Subject: [PATCH] Update install.sh --- install.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/install.sh b/install.sh index 1adefe5..ae964ee 100755 --- a/install.sh +++ b/install.sh @@ -287,7 +287,7 @@ if [[ $(echo "${embedded}" | grep -i "^n") ]]; then # document the service install printf "To install the %s service and keep notes, reference following commands:\n\n" "$service" > install_notes.txt - printf "sudo cp %s/etc/%s.service /etc/systemd/system/etc/%s.service\n" "$program_path" "$service" "$service" >> install_notes.txt + printf "sudo cp %s/etc/%s.service /etc/systemd/system/%s.service\n" "$program_path" "$service" "$service" >> install_notes.txt printf "sudo systemctl daemon-reload\n" >> install_notes.txt printf "sudo systemctl enable %s.service\n" "$service" >> install_notes.txt printf "sudo systemctl start %s.service\n" "$service" >> install_notes.txt