Fix typos

This commit is contained in:
Christer Warén
2025-08-21 17:40:37 +03:00
parent a276adb6d2
commit 348488d156
2 changed files with 8 additions and 3 deletions

View File

@@ -1,6 +1,6 @@
wx-uninstall(){
wx-header "Uninstall"
if [[ ! -d "$HOME/.warengroup" ]]
if [[ -d "$HOME/.warengroup" ]]
then
rm "$HOME/.warengroup" -rf
fi
@@ -11,4 +11,9 @@ wx-uninstall(){
then
(crontab -l ; grep -v "$CRONJOB_NAME" ; grep -v "$CRONJOB_TASK") | grep -v "no crontab" | crontab -
fi
if [[ -f "$HOME/bin/wx" ]]
then
rm "$HOME/bin/wx" -rf
fi
}