如何将 git repo 的副本添加到综合包中?

如何将 git repo 的副本添加到综合包中?

我有一个现有的 Omnibus 包和源代码。我想添加 git repo 目录的副本。

因此我添加了以下代码:

name "REPO_NAME"
source :git => "https://github.com/REPO_NAME"

内容甚至出现在version_manifest.json上

但它没有被复制过来。

当我尝试添加时:

command "cp -r REPO_NAME TARGETPATH"

我收到错误:

cp: cannot stat `REPO_NAME': No such file or directory

作为构建日志的一部分。

此外,它还会将 git sha 添加到包的名称中。我想要的只是将 git repo 的副本与包一起分发。

我做错了什么?谢谢!

答案1

我补充道:

build do
  command "cp -r ../REPO_NAME APP_INSTALL_PATH"
end

相关内容