From d43bd249d110612cbe563efc83175184bf7b375b Mon Sep 17 00:00:00 2001 From: mik-tf Date: Tue, 8 Oct 2024 11:40:02 -0400 Subject: [PATCH] fixed full tag --- flist.v | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/flist.v b/flist.v index 6031b52..66076e8 100644 --- a/flist.v +++ b/flist.v @@ -240,8 +240,8 @@ fn push(tag string) { exit(1) } - flist_name := tag.replace(':', '-') + '.flist' - flist_url := 'https://hub.grid.tf/${hub_user}/${docker_user}-${flist_name}' + flist_name := full_tag.replace_each([':', '-', '/', '-']) + '.flist' + flist_url := 'https://hub.grid.tf/${hub_user}/${flist_name}' success_content := [ term.bold(term.green('Success!') +