diff options
author | Vikram Karve <vikram.karve@progress.com> | 2022-06-29 19:25:43 +0530 |
---|---|---|
committer | Vikram Karve <vikram.karve@progress.com> | 2022-07-26 12:59:47 +0530 |
commit | 44a7a33ec0def095b6f1749a5185a2a0407b75a0 (patch) | |
tree | f1ee37560ff32a725289a1cc181352c5b92fb281 | |
parent | 64ba1646e4bfc575749c4af7cd99198ec3671451 (diff) | |
download | chef-44a7a33ec0def095b6f1749a5185a2a0407b75a0.tar.gz |
Powershell fixes
Signed-off-by: Vikram Karve <vikram.karve@progress.com>
-rw-r--r-- | .expeditor/verify.pipeline.yml | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/.expeditor/verify.pipeline.yml b/.expeditor/verify.pipeline.yml index 5c4d276e91..935b39dcaa 100644 --- a/.expeditor/verify.pipeline.yml +++ b/.expeditor/verify.pipeline.yml @@ -392,9 +392,10 @@ steps: - label: ":habicat: Windows plan" commands: + - Set-Variable -Name "chef_dir" -Value (Split-Path -Path (Get-Location) -Leaf) - Set-Location -Path .. -PassThru - - Move-Item -Path chef -Destination C:/ -PassThru - - Set-Location -Path C:/chef -PassThru + - Move-Item -Path $chef_dir -Destination C:/ -PassThru + - Set-Location -Path "C:/$chef_dir" -PassThru - ./.expeditor/scripts/verify-plan.ps1 timeout_in_minutes: 60 expeditor: |