Skip to content

Commit 17d28fb

Browse files
committed
Fix manifest generation script
Signed-off-by: Simon Gellis <[email protected]>
1 parent 9f2c29c commit 17d28fb

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
},
77
"cardanosigner": {
88
"image": "ghcr.io/hyperledger/firefly-cardanosigner",
9-
"tag": "null",
9+
"tag": "v0.6.1",
1010
"sha": "b950c1d902d58f132f69f5b10aeb1623732de8db4d223534797be87766f123e9"
1111
},
1212
"ethconnect": {

manifestgen.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ do
9191

9292
# If the tag / build number wasn't set in the label, use whatever docker tag we fetched
9393
# This is done for backwards compatability, because not all images have labels yet
94-
if [ -z "$TAG_LABEL" ]; then
94+
if [ -z "$TAG_LABEL" ] || [ "$TAG_LABEL" == "null" ]; then
9595
TAG_LABEL=$TAG
9696
fi
9797

0 commit comments

Comments
 (0)