Commit df6b204e authored by David Dollar's avatar David Dollar

get rid of spaces after comparison operators to avoid them being treated as separate requirements

parent 7b95e2ea
...@@ -75,7 +75,7 @@ function resolve_version() { ...@@ -75,7 +75,7 @@ function resolve_version() {
function package_engine_version() { function package_engine_version() {
version=$(cat $BUILD_DIR/package.json | $bootstrap_node/bin/node $LP_DIR/vendor/json/json engines.$1 2>/dev/null) version=$(cat $BUILD_DIR/package.json | $bootstrap_node/bin/node $LP_DIR/vendor/json/json engines.$1 2>/dev/null)
if [ $? == 0 ]; then if [ $? == 0 ]; then
echo $version echo $version | sed -e 's/\([<>=]\) /\1/g'
fi fi
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment