mirror of
https://github.com/RetroShare/RetroShare.git
synced 2024-10-01 02:35:48 -04:00
11 lines
201 B
Bash
Executable File
11 lines
201 B
Bash
Executable File
#!/bin/sh
|
|
set -e
|
|
if [ "$1" = "configure" ]
|
|
then
|
|
echo "Configure."
|
|
cp /usr/share/retroshare/retroshare.desktop "$HOME/Desktop"
|
|
fi
|
|
echo type \'retroshare\' as normal user for runnig Retroshare !
|
|
|
|
exit 0
|