chore: add install unstable script
All checks were successful
build and upload / build (push) Successful in 16s

This commit is contained in:
2025-05-02 15:52:37 +02:00
parent 733da9f7a0
commit 7f0159e72b
2 changed files with 34 additions and 1 deletions

View File

@@ -33,4 +33,10 @@ install:
install -d /usr/share/zsh/site-functions/
install -m 644 completions.zsh /usr/share/zsh/site-functions/_$(APP_NAME)
install -d /usr/share/fish/vendor_completions.d/
install -m 644 completions.fish /usr/share/fish/vendor_completions.d/$(APP_NAME).fish
install -m 644 completions.fish /usr/share/fish/vendor_completions.d/$(APP_NAME).fish
uninstall:
rm -f $(PREFIX)/bin/$(APP_NAME)
rm -f /usr/share/bash-completion/completions/$(APP_NAME)
rm -f /usr/share/zsh/site-functions/_$(APP_NAME)
rm -f /usr/share/fish/vendor_completions.d/$(APP_NAME).fish