Skip to content

Commit

Permalink
latest version of heroku-cli fails when run arguments are double quoted
Browse files Browse the repository at this point in the history
  • Loading branch information
virtualstaticvoid committed Nov 4, 2015
1 parent 8f3bc94 commit 5563634
Show file tree
Hide file tree
Showing 11 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion test/alternate-versions/install
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ app=${app:23:-4}
git push heroku master

# run R console
heroku run "R --no-save -e 'demo(nlm)'" --app $app
heroku run 'R --no-save -e "demo(nlm)"' --app $app

popd

Expand Down
2 changes: 1 addition & 1 deletion test/capabilities/install
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ app=${app:23:-4}
git push heroku master

# run R console
heroku run "R --no-save -e 'capabilities()'" --app $app
heroku run 'R --no-save -e "capabilities()"' --app $app

popd

Expand Down
2 changes: 1 addition & 1 deletion test/console-e1071/install
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ app=${app:23:-4}
git push heroku master

# run R console
heroku run "R --no-save -e 'demo(nlm)'" --app $app
heroku run 'R --no-save -e "demo(nlm)"' --app $app

popd

Expand Down
2 changes: 1 addition & 1 deletion test/console/install
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ app=${app:23:-4}
git push heroku master

# run R console
heroku run "R --no-save -e 'demo(nlm)'" --app $app
heroku run 'R --no-save -e "demo(nlm)"' --app $app

popd

Expand Down
2 changes: 1 addition & 1 deletion test/ggplot2/install
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ app=${app:23:-4}
git push heroku master

# run R console
heroku run "R --no-save -f ./prog.r" --app $app
heroku run 'R --no-save -f prog.r' --app $app

popd

Expand Down
2 changes: 1 addition & 1 deletion test/glmnet/install
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ app=${app:23:-4}
git push heroku master

# run R console
heroku run "R --no-save -f prog.r" --app $app
heroku run 'R --no-save -f prog.r' --app $app

popd

Expand Down
2 changes: 1 addition & 1 deletion test/gsl/install
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ app=${app:23:-4}
git push heroku master

# run R console
heroku run "R --no-save -e 'demo(nlm)'" --app $app
heroku run 'R --no-save -e "demo(nlm)"' --app $app

popd

Expand Down
2 changes: 1 addition & 1 deletion test/local-packages/install
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ app=${app:23:-4}
git push heroku master

# run R console
heroku run "R --no-save -e 'demo(nlm)'" --app $app
heroku run 'R --no-save -e "demo(nlm)"' --app $app

popd

Expand Down
2 changes: 1 addition & 1 deletion test/package-tests/install
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ app=${app:23:-4}
git push heroku master

# run R console
heroku run "R --no-save -f ./prog.r" --app $app
heroku run 'R --no-save -f prog.r' --app $app

popd

Expand Down
2 changes: 1 addition & 1 deletion test/rcpp/install
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ app=${app:23:-4}
git push heroku master

# run R console
heroku run "R --no-save -e 'demo(nlm)'" --app $app
heroku run 'R --no-save -e "demo(nlm)"' --app $app

popd

Expand Down
2 changes: 1 addition & 1 deletion test/rmarkdown/install
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ app=${app:23:-4}
git push heroku master

# run R console
heroku run "R --no-save -f prog.r" --app $app
heroku run 'R --no-save -f prog.r' --app $app

popd

Expand Down

0 comments on commit 5563634

Please sign in to comment.