mirror of
https://github.com/balena-io/balena-cli.git
synced 2025-03-11 06:53:56 +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);
|
return capitano.run("app associate " + params.name, callback);
|
||||||
}, function(remoteUrl, callback) {
|
}, function(remoteUrl, callback) {
|
||||||
console.log("Resin git remote added: " + remoteUrl);
|
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();
|
return callback();
|
||||||
}
|
}
|
||||||
], done);
|
], done);
|
||||||
|
@ -113,7 +113,13 @@ exports.wizard =
|
|||||||
|
|
||||||
(remoteUrl, callback) ->
|
(remoteUrl, callback) ->
|
||||||
console.log("Resin git remote added: #{remoteUrl}")
|
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()
|
return callback()
|
||||||
|
|
||||||
], done
|
], done
|
||||||
|
Loading…
x
Reference in New Issue
Block a user