gpt4 book ai didi

powershell - 如何在 PowerShell 中添加 Atlassian Bamboo 变量?

转载 作者:行者123 更新时间:2023-12-02 23:11:11 27 4
gpt4 key购买 nike

我很难弄清楚这一点,我有以下 powershell 脚本,一个简单的脚本:

$BambooPath = 'C:\StartFolder\*'
$RemoteWebPath = 'C:\DestFolder'
Copy-Item -Path $BambooPath -Destination $RemoteWebPath -Recurse

我不想将 $BambooPath 中的 C:\StartFolder* 替换为${bamboo.build.working.directory}* 变量...有人知道怎么做吗?

最佳答案

使用下划线而不是点来访问 Bamboo 环境变量:

$BambooPath = $Env:bamboo_build_working_directory
$RemoteWebPath = 'C:\DestFolder'
Copy-Item -Path $BambooPath -Destination $RemoteWebPath -Recurse

关于powershell - 如何在 PowerShell 中添加 Atlassian Bamboo 变量?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40489499/

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