Skip to content

Commit 8e02c1e

Browse files
committed
Fix logic inversion in script/ember.sh
1 parent 32a2295 commit 8e02c1e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

script/ember.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@ set -ue
44
export FASTBOOT_DISABLED
55

66
if [ -z "${USE_FASTBOOT-}" ]; then
7-
unset FASTBOOT_DISABLED
8-
else
97
FASTBOOT_DISABLED=1
8+
else
9+
unset FASTBOOT_DISABLED
1010
fi
1111

1212
ember "$@"

0 commit comments

Comments
 (0)