Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
jfrog rt dl --symlinks=true generic-local/latest.tgz
得到“不正确的用法”。 jfrog cli 版本 1.18.0。 是否可以从 jfrog CLI 下载符号链接数据?
在 jfrog cli 中,--symlink 是一个参数,用于在上传期间保留 Artifactory 中的软链接结构。因此,对于下载,您可以使用以下命令
jfrog rt dl generic-local/latest.tgz
此外,当下载存储在 Artifactory 中的符号链接时,CLI 可以验证符号链接指向的文件是否确实存在,并且它具有正确的 SHA1 校验和。要添加此验证,您应该在下载命令中使用 --validate-symlinks 选项。