From 3dd5f5858a0ac9bf67f533fc38526925577a91c3 Mon Sep 17 00:00:00 2001 From: mike Date: Tue, 18 Aug 2015 14:34:15 +0300 Subject: [PATCH] Reword ending message in quickstart. Fix #108 --- build/actions/wizard.js | 2 +- lib/actions/wizard.coffee | 8 +++++++- 2 files changed, 8 insertions(+), 2 deletions(-) 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