Skip to content

Commit

Permalink
Create packages folder if not exists
Browse files Browse the repository at this point in the history
  • Loading branch information
andystaples committed Jan 29, 2025
1 parent c41f19f commit 07997ab
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions test/e2e/Tests/build-e2e-test.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -101,6 +101,9 @@ else

Write-Host "Removing old packages from test app"
Set-Location $E2EAppProjectDirectory
if (!(Test-Path "./packages")) {
New-Item -Path "./packages" -ItemType Directory -ErrorAction SilentlyContinue
}
Get-ChildItem -Path ./packages -Include * -File -Recurse | ForEach-Object { $_.Delete()}

Write-Host "Building WebJobs extension project"
Expand Down

0 comments on commit 07997ab

Please sign in to comment.