diff options
author | Joseph Hunkeler <jhunkeler@gmail.com> | 2025-02-14 18:52:45 -0500 |
---|---|---|
committer | Joseph Hunkeler <jhunkeler@gmail.com> | 2025-02-14 18:52:45 -0500 |
commit | 7ca33106fd391adf355f78137bb17437be594070 (patch) | |
tree | 6c688a7c4afccaec2103202c7747ffc0f978528e | |
parent | c7fc6029e1682e367ec9a84eac03e8c3175ad5f4 (diff) | |
download | stasis-7ca33106fd391adf355f78137bb17437be594070.tar.gz |
Use the same function as the delivery mechanism to ensure the docker archive name can be resolved
-rw-r--r-- | src/cli/stasis_indexer/helpers.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cli/stasis_indexer/helpers.c b/src/cli/stasis_indexer/helpers.c index 5ae01ca..e337787 100644 --- a/src/cli/stasis_indexer/helpers.c +++ b/src/cli/stasis_indexer/helpers.c @@ -269,7 +269,7 @@ struct StrList *get_docker_images(struct Delivery *ctx, char *pattern) { return NULL; } tolower_s(tarball); - replace_text(tarball, "+", "-", 0); + docker_sanitize_tag(tarball); struct StrList *files = NULL; get_files(&files, ctx->storage.docker_artifact_dir, tarball); |