Skip to content
This repository was archived by the owner on Feb 10, 2022. It is now read-only.

Commit 1b63168

Browse files
committed
changes to fostertype if statement
1 parent 9aaec1b commit 1b63168

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

Q_Builder.sh

100755100644
Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,10 +17,10 @@ sudo apt install bc bison build-essential ccache curl flex g++-multilib gcc-mult
1717

1818
# rom type?
1919
while true; do
20-
read -p "Do ya want android mobile (t) or android tv (f)?" tf
21-
case $tf in
22-
[Tt]* ) FOSTERTYPE=t; break;;
23-
[Ff]* ) FOSTERTYPE=f; break;;
20+
read -p "Do ya want android mobile (m) or android tv (t)?" mt
21+
case $mt in
22+
[Mm]* ) FOSTERTYPE=t; break;;
23+
[Tt]* ) FOSTERTYPE=f; break;;
2424
* ) echo "Please answer yes or no.";;
2525
esac
2626
done

0 commit comments

Comments
 (0)