Created Justfile and updated README #12

Merged
AustrianToast merged 11 commits from dev into main 2023-03-29 15:37:31 +02:00
Showing only changes of commit 994130d7df - Show all commits

12
justfile Normal file
View File

@ -0,0 +1,12 @@
VER := "v1.7"
install:
@echo "==> Installing update {{VER}} into /usr/local/bin"
@sudo install -Dm755 update /usr/local/bin/update
@cp update.conf ${HOME}/.config/
@echo "==> Finished."
uninstall:
@echo "==> Uninstalling update {{VER}} from /usr/local/bin"
@sudo rm /usr/local/bin/update ${HOME}/.config/update.conf
@echo "==> Finished."