Skip to content

Commit

Permalink
added value check to install.ssh
Browse files Browse the repository at this point in the history
  • Loading branch information
trombastic authored and clavay committed May 17, 2023
1 parent 00e2328 commit fd580d9
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,10 @@ if [[ "$answer_date" == "n" ]]; then
fi

read -p "Use proxy ? [http://proxy:port or n]: " answer_proxy
if [[ "answer_proxy" == "" ]]; then
echo "please select 'n' or enter a valid proxy"
exit 1
fi

apt_proxy install -y python3-pip
echo 'Some python3 packages installed:'
Expand Down

0 comments on commit fd580d9

Please sign in to comment.