mirror of
https://github.com/balena-io/balena-cli.git
synced 2025-05-03 01:23:05 +00:00
Merge pull request #615 from resin-io/612-remove-inconsistent-tagging-message
Remove inconsistent (and now unneccesary) 'Tagging image as' message
This commit is contained in:
commit
f0d9b615a7
@ -9,6 +9,7 @@ This project adheres to [Semantic Versioning](http://semver.org/).
|
|||||||
|
|
||||||
- Provide a helpful warning when Docker is not installed (or is unaccessible)
|
- Provide a helpful warning when Docker is not installed (or is unaccessible)
|
||||||
- Added a link to the Node download page in the warning for users with old Node versions
|
- Added a link to the Node download page in the warning for users with old Node versions
|
||||||
|
- Remove inconsistent (and now unneccesary) 'Tagging image as' message from local build output
|
||||||
|
|
||||||
## [6.3.1] - 2017-08-08
|
## [6.3.1] - 2017-08-08
|
||||||
|
|
||||||
|
@ -207,9 +207,6 @@ exports.runBuild = function(params, options, getBundleInfo, logger) {
|
|||||||
hooks = {
|
hooks = {
|
||||||
buildSuccess: function(image) {
|
buildSuccess: function(image) {
|
||||||
var doodle;
|
var doodle;
|
||||||
if (options.tag != null) {
|
|
||||||
console.log("Tagging image as " + options.tag);
|
|
||||||
}
|
|
||||||
doodle = doodles.getDoodle();
|
doodle = doodles.getDoodle();
|
||||||
console.log();
|
console.log();
|
||||||
console.log(doodle);
|
console.log(doodle);
|
||||||
|
@ -209,8 +209,6 @@ exports.runBuild = (params, options, getBundleInfo, logger) ->
|
|||||||
new Promise (resolve, reject) ->
|
new Promise (resolve, reject) ->
|
||||||
hooks =
|
hooks =
|
||||||
buildSuccess: (image) ->
|
buildSuccess: (image) ->
|
||||||
if options.tag?
|
|
||||||
console.log("Tagging image as #{options.tag}")
|
|
||||||
# Show charlie. In the interest of cloud parity,
|
# Show charlie. In the interest of cloud parity,
|
||||||
# use console.log, not the standard logging streams
|
# use console.log, not the standard logging streams
|
||||||
doodle = doodles.getDoodle()
|
doodle = doodles.getDoodle()
|
||||||
|
Loading…
x
Reference in New Issue
Block a user