File tree Expand file tree Collapse file tree 1 file changed +4
-1
lines changed
Expand file tree Collapse file tree 1 file changed +4
-1
lines changed Original file line number Diff line number Diff line change 9393 Copy-Item -Path C:\php-snap-build\rmtools\data\db\master.json -Destination .\builds\${{ matrix.config }}.json
9494 Get-ChildItem .\master -Filter '*win32*.zip' | ForEach-Object { Copy-Item $_.FullName "$($_.DirectoryName)\$($_.Name -replace 'win32','windows')" }
9595 if (("${{ matrix.config }}" -match 'ts-windows-vs17-x(64|x86)')) {
96- Get-ChildItem .\master -Filter '*.zip' | ForEach-Object { Copy-Item $_.FullName (Join-Path $_.DirectoryName ($_.Name -replace $php_version,'master-ts')) }
96+ Get-ChildItem .\master -Filter '*.zip' | ForEach-Object {
97+ Copy-Item $_.FullName (Join-Path $_.DirectoryName ($_.Name -replace $php_version,'master-ts'))
98+ Copy-Item $_.FullName (Join-Path $_.DirectoryName ($_.Name -replace $php_version,'master'))
99+ }
97100 } else {
98101 Get-ChildItem .\master -Filter '*.zip' | ForEach-Object { Copy-Item $_.FullName (Join-Path $_.DirectoryName ($_.Name -replace $php_version,'master')) }
99102 }
You can’t perform that action at this time.
0 commit comments