From 4a563a22289b3e29259cc74c6d667ebc79ad7a61 Mon Sep 17 00:00:00 2001 From: github-actions Date: Sat, 21 Oct 2023 14:44:10 +0200 Subject: [PATCH] log more info --- make.ps1 | 2 ++ 1 file changed, 2 insertions(+) diff --git a/make.ps1 b/make.ps1 index 70b99c3..9b47bbe 100644 --- a/make.ps1 +++ b/make.ps1 @@ -125,10 +125,12 @@ function GetSourceRepo { $subfolder = ".azure-devops" if (!(Test-Path "$tempFolder/$($subfolder)")) { + Write-Host "Creating [$tempFolder/$($subfolder)]" 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 + Write-Host "Copying build.yml from [$PSScriptRoot/development/WebGoat-GHAzDo-starter-pipeline.yml] to [$tempFolder/$subfolder/build.yml]" Copy-Item -Path $PSScriptRoot/development/WebGoat-GHAzDo-starter-pipeline.yml -Destination $tempFolder/$subfolder/build.yml -Force git status