Skip to content

Commit

Permalink
attempt to fix the location
Browse files Browse the repository at this point in the history
  • Loading branch information
rajbos committed Oct 21, 2023
1 parent 052f8be commit 34cfd5e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions make.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -125,12 +125,12 @@ function GetSourceRepo {

$subfolder = ".azure-devops"
if (!(Test-Path "$tempFolder/$($subfolder)")) {
New-Item -ItemType Directory -Path "$tempFolder\$($subfolder)" | Out-Null
New-Item -ItemType Directory -Path "$tempFolder/$($subfolder)" | Out-Null
}

# overwrite the file in the .azure-devops/build.yml with the content from /development/WebGoat-GHAzDo-starter-pipeline.yml file
Copy-Item -Path $PSScriptRoot\development\WebGoat-GHAzDo-starter-pipeline.yml -Destination $tempFolder\$subfolder\build.yml -Force
#git status
Copy-Item -Path $PSScriptRoot/development/WebGoat-GHAzDo-starter-pipeline.yml -Destination $tempFolder/$subfolder/build.yml -Force
git status

git add ./.azure-devops/
git add ./.azure-devops/build.yml
Expand Down

0 comments on commit 34cfd5e

Please sign in to comment.