2021-03-23 11:18:57 +00:00
|
|
|
#!/bin/bash
|
|
|
|
|
2021-05-05 15:22:57 +00:00
|
|
|
# Check if graphical installer should be executed
|
|
|
|
if [ "$1" == "--gui" ]; then
|
2021-05-06 17:40:07 +00:00
|
|
|
if ! command -v pip3> /dev/null
|
|
|
|
then
|
|
|
|
echo "Please install PIP on your system for the graphical version of Backuppy!"
|
|
|
|
exit
|
2021-05-05 15:22:57 +00:00
|
|
|
fi
|
2021-05-06 17:40:07 +00:00
|
|
|
pip3 install pyside2
|
|
|
|
python3 -B install.py "$1"
|
|
|
|
else
|
|
|
|
python3 -B install.py
|
2021-05-05 15:22:57 +00:00
|
|
|
fi
|