mirror of
https://github.com/balena-io/balena-cli.git
synced 2024-12-21 06:33:28 +00:00
Reword ending message in quickstart. Fix #108
This commit is contained in:
parent
50daf8ef73
commit
3dd5f5858a
@ -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);
|
||||
|
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user