Skip to content
This repository has been archived by the owner on Nov 3, 2021. It is now read-only.

Commit

Permalink
Bug 951235 - Fix improper use of back ticks to output. r=julienw a=ba…
Browse files Browse the repository at this point in the history
…jaj a=NPOTB
  • Loading branch information
hfiguiere committed May 7, 2014
1 parent 4d8a75e commit 989751d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion bin/gaia-marionette
Expand Up @@ -15,7 +15,7 @@ make -C $DIR/../ b2g
if [ -z "$NPM_REGISTRY" ]; then
NPM_REGISTRY="http://registry.npmjs.org"
fi
`cd $DIR && npm install --registry=${NPM_REGISTRY}`
(cd $DIR && npm install --registry=${NPM_REGISTRY})

# tests can timeout without the profile-test folder so build it here.
if [ ! -d $DIR/../profile-test ]; then
Expand Down
2 changes: 1 addition & 1 deletion bin/gaia-perf-marionette
Expand Up @@ -23,7 +23,7 @@ fi
if [ -z "$NPM_REGISTRY" ]; then
NPM_REGISTRY="http://registry.npmjs.org"
fi
`cd $DIR && npm install --registry=${NPM_REGISTRY}`
(cd $DIR && npm install --registry=${NPM_REGISTRY})


if [ $MARIONETTE_RUNNER_HOST = "marionette-b2gdesktop-host" ] ; then
Expand Down

0 comments on commit 989751d

Please sign in to comment.