repo: janusweb action: commit revision: path_from: revision_from: 2939225727e20cfdb6fb36d77db10e21cadcfd9b: path_to: revision_to:
commit 2939225727e20cfdb6fb36d77db10e21cadcfd9b Author: James BaicoianuDate: Tue Jan 23 01:42:17 2018 -0800 Fix for paths with spaces in build scripts diff --git a/utils/build.sh b/utils/build.sh
--- a/utils/build.sh
+++ b/utils/build.sh
@@ -10,7 +10,7 @@ if [ -z "$NODEJS" ]; then
fi
-VERSION=$($NODEJS -pe "require('./package.json').version")
+VERSION=$("$NODEJS" -pe "require('./package.json').version")
BUILDROOT=$(pwd)/build
BUILDBASE=${VERSION}
BUILDDIR=${BUILDROOT}/${BUILDBASE}
-----END OF PAGE-----