Reword ending message in quickstart. Fix #108

This commit is contained in:
mike 2015-08-18 14:34:15 +03:00
parent 50daf8ef73
commit 3dd5f5858a
2 changed files with 8 additions and 2 deletions

View File

@ -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);

View File

@ -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