File tree Expand file tree Collapse file tree 1 file changed +3
-2
lines changed
Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change 22set -eu -o pipefail
33
44REPO_ROOT=" $( cd " $( dirname " ${BASH_SOURCE[0]} " ) /.." && pwd ) "
5- STEMCELL_AUTOMATION_PS1=$( ls " ${REPO_ROOT} " /stembuild/stemcell-automation/* ps1 | grep -iv Test)
65
76: " ${OPENSSH_ZIP?" Please see README.md on where to obtain this." } "
87: " ${BOSH_PSMODULES_ZIP?" Please see README.md on where to obtain this." } "
@@ -15,7 +14,9 @@ cp "${OPENSSH_ZIP}" "${TEMP_DIR}/OpenSSH-Win64.zip"
1514cp " ${BOSH_PSMODULES_ZIP} " " ${TEMP_DIR} /bosh-psmodules.zip"
1615cp " ${AGENT_ZIP} " " ${TEMP_DIR} /agent.zip"
1716cp " ${DEPS_JSON} " " ${TEMP_DIR} /deps.json"
18- cp " ${STEMCELL_AUTOMATION_PS1} " " ${TEMP_DIR} "
17+ for file in $( ls " ${REPO_ROOT} " /stembuild/stemcell-automation/* ps1 | grep -iv Test) ; do
18+ cp " ${file} " " ${TEMP_DIR} "
19+ done
1920
2021rm -f " ${REPO_ROOT} /stembuild/assets/StemcellAutomation.zip"
2122
You can’t perform that action at this time.
0 commit comments