Skip to content

Commit 0fa7816

Browse files
committed
Fix debug artifact path
1 parent 1aae3c4 commit 0fa7816

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/move_dl_artifacts.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ $VerbosePreference="Continue";
55

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

0 commit comments

Comments
 (0)