From 6fc7e3b15ef06a865921f4021bdf83a0361a6d36 Mon Sep 17 00:00:00 2001 From: Tyler Murphy Date: Wed, 12 Apr 2023 22:30:54 -0400 Subject: [PATCH] update makefile --- Makefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Makefile b/Makefile index 5998a41..651fbc3 100644 --- a/Makefile +++ b/Makefile @@ -36,14 +36,14 @@ clean: rm -rf $(BIN) install: - cp bin/app /usr/local/bin/wrapper + cp $(APP) /usr/local/bin/wrapper uninstall: rm /usr/local/bin/wrapper -openrc-install: install +install-openrc: install cp service/openrc /etc/init.d/wrapper chmod +x /etc/init.d/wrapper -openrc-uninstall: uninstall +uninstall-openrc: uninstall rm /etc/init.d/wrapper