diff --git a/build/actions/wizard.js b/build/actions/wizard.js index c02d2140..59eecf5c 100644 --- a/build/actions/wizard.js +++ b/build/actions/wizard.js @@ -98,7 +98,7 @@ return capitano.run("app associate " + params.name, callback); }, function(remoteUrl, callback) { console.log("Resin git remote added: " + remoteUrl); - console.log('Please type "git push resin master" into your project directory now!'); + console.log("Please type:\n\n $ cd " + params.directory + " && git push resin master\n\nTo push your project to resin.io."); return callback(); } ], done); diff --git a/lib/actions/wizard.coffee b/lib/actions/wizard.coffee index d4e2d116..a76ed97d 100644 --- a/lib/actions/wizard.coffee +++ b/lib/actions/wizard.coffee @@ -113,7 +113,13 @@ exports.wizard = (remoteUrl, callback) -> console.log("Resin git remote added: #{remoteUrl}") - console.log('Please type "git push resin master" into your project directory now!') + console.log """ + Please type: + + $ cd #{params.directory} && git push resin master + + To push your project to resin.io. + """ return callback() ], done