Skip to content

Commit

Permalink
Make it default to install for first time
Browse files Browse the repository at this point in the history
  • Loading branch information
gkielian committed Nov 11, 2023
1 parent af93505 commit 1796edb
Showing 1 changed file with 0 additions and 10 deletions.
10 changes: 0 additions & 10 deletions git_runner_deps.sh
Original file line number Diff line number Diff line change
Expand Up @@ -16,17 +16,7 @@ proceed_confirmed=false
update_confirmed=false
while ! $proceed_confirmed
do
echo "[OpenFASoC] Do you wish to proceed with the installation?
[y] Yes. Install for the first time.
[u] Yes. Update already-installed dependencies.
[n] No. Exit this script."
read -p "Select the desired option: " selection
selection="y"
if [ "$selection" == "y" ] || [ "$selection" == "Y" ]; then
echo "Beginning installation..."; proceed_confirmed=true
elif [ "$selection" == "n" ] || [ "$selection" == "N" ]; then
echo "Quitting script."; exit
elif [ "$selection" == "u" ] || [ "$selection" == "U" ]; then
update_confirmed=true
proceed_confirmed=true
else
Expand Down

0 comments on commit 1796edb

Please sign in to comment.