All Is Well: remove folder before clone and use rm -f

pull/909/head
Botspot 4 years ago
parent 15bafb3776
commit f3dd93695f

@ -7,6 +7,7 @@ function error {
exit 1
}
rm -rf ~/All-is-well || error "Failed to first remove ~/All-is-well folder!"
git clone https://github.com/spectrumgamer75/All-is-well || error "Failed to download!"
cd $HOME/All-is-well/aiw
chmod +x 'aiwrpi.sh'
@ -14,9 +15,9 @@ echo "alias aiw=$HOME/All-is-well/aiw/aiwrpi.sh" >> ~/.bashrc
echo "[Desktop Entry]
Name=All Is Well
GenericName=Update Helper and Fixer
Comment= ALL IS WELL is a bash script that allows users to easily update and upgrade their repositories and packages on linux. It will also fix any broken packages and dependencies.
Comment=ALL IS WELL is a bash script that allows users to easily update and upgrade their repositories and packages on linux. It will also fix any broken packages and dependencies.
Exec=$DIRECTORY/etc/terminal-run $HOME/All-is-well/aiw/aiwrpi.sh 'All Is Well'
Icon=$HOME/pi-apps/apps/All Is Well/icon-64.png
Icon=$(dirname "$0")/icon-64.png
Terminal=false
StartupNotify=true
Type=Application

@ -1,9 +1,9 @@
#! /bin/bash
# This is the uninstall script for the All Is Well script
# Removes shortcuts
rm ~/.local/share/applications/aiw.desktop
rm -f ~/.local/share/applications/aiw.desktop
# Removes main folder
sudo rm -r ~/All-is-well
sudo rm -rf ~/All-is-well
# Removes alias
sed -i '/alias aiw=.*All-is-well.*/d' ~/.bashrc
exit 0

Loading…
Cancel
Save