move stuff around

This commit is contained in:
2024-09-08 16:36:19 +02:00
parent 452b0e92e2
commit 81b07991aa
9 changed files with 59 additions and 24 deletions

10
legacy/makefile Normal file
View File

@ -0,0 +1,10 @@
install:
@echo "==> Installing update into /usr/local/bin"
@sudo install -Dm755 update /usr/local/bin/update
@[[ -f ${HOME}/.config/update.conf ]] || cp update.conf ${HOME}/.config/
@echo "==> Finished."
uninstall:
@echo "==> Uninstalling update from /usr/local/bin"
@sudo rm /usr/local/bin/update ${HOME}/.config/update.conf
@echo "==> Finished."