mirror of
https://github.com/ONLYOFFICE/core.git
synced 2026-04-07 13:55:33 +08:00
5 lines
314 B
PowerShell
5 lines
314 B
PowerShell
$gclient_path = "depot_tools\gclient.bat"
|
|
$fetch_path = "depot_tools\fetch.bat"
|
|
(Get-Content $gclient_path) | ForEach-Object { $_ -replace "^(`"%~dp0python`")", "call $&" } | Set-Content $gclient_path
|
|
(Get-Content $fetch_path) | ForEach-Object { $_ -replace "^(%~dp0python)", "call $&" } | Set-Content $fetch_path
|