intial release
This commit is contained in:
parent
c2e0d0b71e
commit
db9f28e53d
3 changed files with 392 additions and 0 deletions
17
uninstall.sh
Normal file
17
uninstall.sh
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
#!/usr/bin/env bash
|
||||
|
||||
|
||||
set -euo pipefail
|
||||
|
||||
DEST="/usr/local/bin/pawdance"
|
||||
|
||||
if [[ -f "$DEST" ]]; then
|
||||
echo "Removing $DEST …"
|
||||
rm -f "$DEST"
|
||||
echo "Uninstalled."
|
||||
echo syncing file system...
|
||||
sudo sync
|
||||
echo done
|
||||
else
|
||||
echo "Nothing to do – $DEST not found."
|
||||
fi
|
||||
Loading…
Add table
Add a link
Reference in a new issue