aboutsummaryrefslogtreecommitdiff
path: root/src/lib/core
diff options
context:
space:
mode:
authorJoseph Hunkeler <jhunkeler@users.noreply.github.com>2024-12-11 11:30:59 -0500
committerGitHub <noreply@github.com>2024-12-11 11:30:59 -0500
commit6c0355d9802b83938de388b444021f34cf9b9506 (patch)
tree5bb79c36bf53415877f2991a5a66e1425a21a59e /src/lib/core
parent3078519379ffcdc45811431336547d7df31a24ee (diff)
parent3c88d1ff55c1fd8eba6dd431d1220e7d8ff4796b (diff)
downloadstasis-6c0355d9802b83938de388b444021f34cf9b9506.tar.gz
Merge pull request #76 from jhunkeler/fix-download-auth
Fix artifactory download authentication context
Diffstat (limited to 'src/lib/core')
-rw-r--r--src/lib/core/artifactory.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/core/artifactory.c b/src/lib/core/artifactory.c
index 0cd3b18..eedaf43 100644
--- a/src/lib/core/artifactory.c
+++ b/src/lib/core/artifactory.c
@@ -325,7 +325,7 @@ int jfrog_cli_rt_download(struct JFRT_Auth *auth, struct JFRT_Download *ctx, cha
return -1;
}
- snprintf(cmd, sizeof(cmd) - 1, "%s '%s' %s", args, repo_path, dest ? dest : "");
+ snprintf(cmd, sizeof(cmd) - 1, "%s '%s' '%s'", args, repo_path, dest ? dest : "");
guard_free(args);
guard_strlist_free(&arg_map);