Skip to content

Commit

Permalink
Update dependencies to always do first install for now
Browse files Browse the repository at this point in the history
This will help with testing
  • Loading branch information
gkielian committed Nov 11, 2023
1 parent 65d48f6 commit b325206
Showing 1 changed file with 0 additions and 14 deletions.
14 changes: 0 additions & 14 deletions dependencies.sh
Original file line number Diff line number Diff line change
Expand Up @@ -16,21 +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
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
echo "[OpenFASoC] Invalid selection. Choose y or n."
fi
done

if $update_confirmed; then
Expand Down

0 comments on commit b325206

Please sign in to comment.