mirror of
https://github.com/RetroShare/RetroShare.git
synced 2024-10-01 02:35:48 -04:00
21 lines
557 B
Bash
Executable File
21 lines
557 B
Bash
Executable File
#!/bin/sh
|
|
set -e
|
|
if [ \( "$1" = "upgrade" \) ]
|
|
then
|
|
echo Remeber: Your public keys and settings are in your home directory .pqiPGPrc !
|
|
fi
|
|
|
|
if [ \( "$1" = "remove" \) ]
|
|
then
|
|
echo Remeber: Your public keys in your home directory .pqiPHPrc will be deleted !
|
|
echo Type CTRL+C if you whish to abort, continue with ENTER
|
|
read weiter
|
|
if [ -d "$HOME/.pqiPGPrc" ] ; then
|
|
rm "$HOME/.pqiPGPrc/" --preserve-root -r
|
|
fi
|
|
|
|
if [ -e "$HOME/Desktop/retroshare.desktop" ] ; then
|
|
rm "$HOME/Desktop/retroshare.desktop"
|
|
fi
|
|
fi
|
|
exit 0 |