aboutsummaryrefslogtreecommitdiff
path: root/src/cli/stasis_indexer/helpers.c
diff options
context:
space:
mode:
authorJoseph Hunkeler <jhunkeler@users.noreply.github.com>2025-02-14 19:28:26 -0500
committerGitHub <noreply@github.com>2025-02-14 19:28:26 -0500
commitf96fc908099ce1e2c5ef10079de849da3ed34706 (patch)
tree22e0ff2f03494f1ac613e53c3d443d258a60c412 /src/cli/stasis_indexer/helpers.c
parent9e15781b353819f106f0fced0322fff1b23f1e56 (diff)
parent5bac4d7c79ee0148e8464abcbac6035440b4d196 (diff)
downloadstasis-f96fc908099ce1e2c5ef10079de849da3ed34706.tar.gz
Merge pull request #95 from jhunkeler/sanitize-docker-archive-name
Sanitize docker archive name
Diffstat (limited to 'src/cli/stasis_indexer/helpers.c')
-rw-r--r--src/cli/stasis_indexer/helpers.c2
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);