Fix unary operators.

Former-commit-id: ecb86089a6
Former-commit-id: 3e3fb956b1d16717d9344131fe312bb9297ec5a4
This commit is contained in:
Kaj Forney 2018-10-01 22:42:40 -06:00
parent 9ede0f6f13
commit e387ad06d7

View file

@ -13,19 +13,20 @@ fi
#Arguments
DISTRO=$(lsb_release -i -s)
while getopts ud:r: option
while getopts ul:d:r: option
do
case "${option}" in
u) UNATTEND="true" && echo "UNATTEND";;
l) DISTRO=${OPTARG} && echo $DISTRO;;
d) DESKTOP=${OPTARG} && echo $DESKTOP;;
r) REPO=${OPTARG} && echo $REPO;;
esac
done
DISTRO=$(lsb_release -i -s)
if [ $UNATTEND != "true" ];
if [[ $UNATTEND != "true" ]];
then
whiptail --backtitle "Pentest Build Script" --title "Welcome" --msgbox "This script will help you build a custom pentesting distribution." 7 70
@ -104,7 +105,7 @@ Parrot)
;;
esac
if [ $UNATTEND != "true" ];
if [[ $UNATTEND != "true" ]];
then
whiptail --backtitle "Pentest Build Script" --title "Finished" --msgbox "Fingers crossed there were no errors... Your image should be done!" 7 70
fi