Skip to content

Commit

Permalink
Fix my if statement
Browse files Browse the repository at this point in the history
  • Loading branch information
JoshuaDoes committed Jul 28, 2023
1 parent 483872e commit a0920bf
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -40,8 +40,9 @@ on_install() {
abort "* "$DEVICE" is not supported!"
fi

if [ $DEVICE == "felix" ] || [ $DEVICE == "tangorpro" ]; then
if [ $DEVICE = "felix" ] || [ $DEVICE = "tangorpro" ]; then
ui_print "* WARNING: "$DEVICE" is experimental!"
fi

if [ $RELEASE != "13" ] && [ $RELEASE != "14" ]; then
abort "* Android "$RELEASE" is not supported!"
Expand Down

0 comments on commit a0920bf

Please sign in to comment.