gpt4 book ai didi

gitlab-ci - Gitlab T 恤 : collapsed multi-line command & unrecognized option: append

转载 作者:行者123 更新时间:2023-12-05 03:42:07 46 4
gpt4 key购买 nike

在我的 GitLab CI 文件中,我有一个从 "Publish npm packages instruction" 复制的文件,

before_script:
- |
{
echo "@${CI_PROJECT_ROOT_NAMESPACE}:registry=${CI_API_V4_URL}/projects/${CI_PROJECT_ID}/packages/npm/"
echo "${CI_API_V4_URL#https?}/projects/${CI_PROJECT_ID}/packages/npm/:_authToken=\${CI_JOB_TOKEN}"
} | tee --append .npmrc

当我尝试在 Alpine Linux 中运行它时,我得到了。

$ { # collapsed multi-line command
tee: unrecognized option: append
BusyBox v1.31.1 () multi-call binary.
Usage: tee [-ai] [FILE]...
Copy stdin to each FILE, and also to stdout
-a Append to the given FILEs, don't overwrite
-i Ignore interrupt signals (SIGINT)

最佳答案

道理很简单,tee有两种实现方式,

  • Alpine 使用的 Busybox 有 tee 但它不提供 --append它确实提供了一个 -a 选项(append 的缩写),定义为“附加到给定的文件,不要覆盖”<
  • GNU CoreUtils provides a copy of tee too它有 --append 您在这里使用的。它也被定义为“附加到给定的文件,不要覆盖”。但是作为简写,GNU Tee 也提供了别名是-a

所以简而言之,如果你想要一些东西与 Alpine 和 BusyBox 以及 GNU Tee 的发行版兼容,那么使用 -a (两者都支持)而不是 --append (仅在 GNU Tee 中受支持)。

关于gitlab-ci - Gitlab T 恤 : collapsed multi-line command & unrecognized option: append,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/67401713/

46 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com