mirror of
https://github.com/microsoft/WSL.git
synced 2025-12-10 17:47:59 -06:00
fix split char from ; -> ,
This commit is contained in:
parent
f522547f42
commit
040c44d59d
@ -236,7 +236,7 @@ stages:
|
||||
$inputDir = "bin\$arch\Release"
|
||||
$outputDir = "$(packageStagingDir)\$arch"
|
||||
New-Item -ItemType Directory -Path "$outputDir\wslsettings" -Force
|
||||
foreach ($file in $pattern.Split(';')) {
|
||||
foreach ($file in $pattern.Split(',')) {
|
||||
$sourcePath = Join-Path $inputDir $file
|
||||
if (Test-Path $sourcePath) {
|
||||
$destPath = Join-Path $outputDir $file
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user