Skip to content

Commit

Permalink
Fix debug artifact path
Browse files Browse the repository at this point in the history
  • Loading branch information
mitchcapper committed Dec 9, 2024
1 parent 1aae3c4 commit 0fa7816
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/move_dl_artifacts.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ $VerbosePreference="Continue";

$files = (Get-ChildItem -Path d:/artifacts/*.zip -Force -ErrorAction SilentlyContinue)
foreach ($file in $files){
$folder = $file.BaseName.replace("WLB-","")
$folder = $file.BaseName.replace("WLB-","").replace("-Debug","")
$srcPath = "d:/artifacts/$($folder)"
if ( -not (Test-Path -Path $srcPath) ){
Expand-Archive -Path $file.FullName -DestinationPath $srcPath
Expand Down

0 comments on commit 0fa7816

Please sign in to comment.