Skip to content

Commit

Permalink
get rid of spaces after comparison operators to avoid them being trea…
Browse files Browse the repository at this point in the history
…ted as separate requirements
  • Loading branch information
ddollar committed Feb 27, 2012
1 parent 7b95e2e commit df6b204
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bin/compile
Expand Up @@ -75,7 +75,7 @@ function resolve_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)
if [ $? == 0 ]; then
echo $version
echo $version | sed -e 's/\([<>=]\) /\1/g'
fi
}

Expand Down

0 comments on commit df6b204

Please sign in to comment.