Skip to content

Commit 8899f8d

Browse files
Add pull url for untagged images (#511)
* add pull url for untagged images * bump version
1 parent ea904e0 commit 8899f8d

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

lib/interface/cli/helpers/image.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ class ImagesHelper {
2525
newImage.id = image.internalImageId ? image.internalImageId.substring(0, 12) : '\b';
2626
if (_.isEqual(tag, NONE_TAG)) {
2727
newImage.tag = tag;
28-
newImage.pull = '';
28+
newImage.pull = image.repoDigest || '';
2929
} else {
3030
newImage.tag = tag.tag;
3131
newImage.pull = `${tag.registry}/${tag.repository}:${tag.tag}`;

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "codefresh",
3-
"version": "0.68.15",
3+
"version": "0.68.16",
44
"description": "Codefresh command line utility",
55
"main": "index.js",
66
"preferGlobal": true,

0 commit comments

Comments
 (0)