Skip to content

Commit b4f398a

Browse files
committed
fix("scripts"): fix condition in yarnw script
1 parent 0d26012 commit b4f398a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

yarnw

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
YARN_SCRIPT=`find ./build -wholename "*/bin/yarn" -type l`
44

5-
if [ ! -f $YARN_SCRIPT ]; then
5+
if [ ! -f "$YARN_SCRIPT" ]; then
66
echo "Yarn not found! Run gradle build first!"
77
else
88
./nodew $YARN_SCRIPT "$@"

0 commit comments

Comments
 (0)