Skip to content

Commit

Permalink
Add pull url for untagged images (#511)
Browse files Browse the repository at this point in the history
* add pull url for untagged images

* bump version
  • Loading branch information
yaroslav-codefresh authored Jun 22, 2020
1 parent ea904e0 commit 8899f8d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion lib/interface/cli/helpers/image.js
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ class ImagesHelper {
newImage.id = image.internalImageId ? image.internalImageId.substring(0, 12) : '\b';
if (_.isEqual(tag, NONE_TAG)) {
newImage.tag = tag;
newImage.pull = '';
newImage.pull = image.repoDigest || '';
} else {
newImage.tag = tag.tag;
newImage.pull = `${tag.registry}/${tag.repository}:${tag.tag}`;
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "codefresh",
"version": "0.68.15",
"version": "0.68.16",
"description": "Codefresh command line utility",
"main": "index.js",
"preferGlobal": true,
Expand Down

0 comments on commit 8899f8d

Please sign in to comment.