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.
对于部署,我们使用了很棒的工具 PHING。我们希望能够在部署时将参数传递给“phing”命令,如下所示:
phing 1.1.1
-> 我们想在 phing 构建脚本中捕获 1.1.1 以从我们的存储库中提取某个 SVN TAG 并将该标签移动到生产环境中。
那是可能的吗?
phing 有一个 PromptTask 请求这样的信息。
解决了!
您可以使用
phing -Dversion=1.1.1 -Dparam=value
见https://www.phing.info/trac/ticket/175