Skip to content

Commit

Permalink
debian: remove app settings on uninstall
Browse files Browse the repository at this point in the history
  • Loading branch information
akashnimare committed Dec 5, 2017
1 parent a1d5a35 commit 23eef7e
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions scripts/debian-uninstaller.sh
Original file line number Diff line number Diff line change
Expand Up @@ -22,3 +22,10 @@ getDesktopEntry=/home/$getSudoUser/.config/autostart/zulip.desktop;
if [ -f $getDesktopEntry ]; then
sudo rm $getDesktopEntry;
fi

# App directory which contains all the config, setting files
appDirectory=/home/$getSudoUser/.config/Zulip/;

if [ -d $appDirectory ]; then
sudo rm -rf $appDirectory;
fi

0 comments on commit 23eef7e

Please sign in to comment.