Skip to content

Commit 6d64213

Browse files
authored
Merge branch 'release/2025.0' into bump-release-v-2025.0.1
2 parents f32b30c + f9f7d4a commit 6d64213

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed
Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
# PowerShell script
2-
if ($PSVersionTable.OS -match "Windows") {
2+
$os = [System.Environment]::OSVersion.Platform
3+
if ($os -eq [System.PlatformID]::Win32NT) {
34
python $env:BUNDLED_DEBUGPY_PATH --listen 0 --wait-for-client $args
45
} else {
56
python3 $env:BUNDLED_DEBUGPY_PATH --listen 0 --wait-for-client $args
6-
}
7+
}

0 commit comments

Comments
 (0)