Skip to content

Commit

Permalink
Fix ./flash_all.sh: line 60: _treble_download_dest=treble: command no…
Browse files Browse the repository at this point in the history
…t found bug
  • Loading branch information
c79 committed Nov 24, 2021
1 parent 2f7d671 commit 11fb5b3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion flash_all.sh
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ function check_if_dir_exists() {
echo
read -r -p $'You need to download the firmware first.\nWould you like to download the firmware? [y/n]: ' yn
case $yn in
[Yy]*) "_treble_download_dest=$dest" "$PWD/download.sh"; return 0; ;;
[Yy]*) _treble_download_dest="$dest" "$PWD/download.sh"; return 0; ;;
[Nn]*) echo $'\nAborting...'; exit 1 ;;
esac
done
Expand Down

0 comments on commit 11fb5b3

Please sign in to comment.