We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
USE_FASTBOOT: unbound variable
1 parent a423d44 commit 32a2295Copy full SHA for 32a2295
script/ember.sh
@@ -3,7 +3,7 @@ set -ue
3
4
export FASTBOOT_DISABLED
5
6
-if [ -z "${USE_FASTBOOT}" ]; then
+if [ -z "${USE_FASTBOOT-}" ]; then
7
unset FASTBOOT_DISABLED
8
else
9
FASTBOOT_DISABLED=1
script/start-web.sh
@@ -1,7 +1,7 @@
1
#! /bin/bash
2
set -ue
-if [[ -z "${USE_FASTBOOT}" ]]; then
+if [[ -z "${USE_FASTBOOT-}" ]]; then
unset USE_FASTBOOT
bin/start-nginx ./target/release/server
0 commit comments