We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 82c2446 commit 0d5fe31Copy full SHA for 0d5fe31
bundled/scripts/noConfigScripts/debugpy.bat
@@ -1,3 +1,3 @@
1
@echo off
2
:: Bat script
3
-python3 %BUNDLED_DEBUGPY_PATH% --listen 0 --wait-for-client %*
+python %BUNDLED_DEBUGPY_PATH% --listen 0 --wait-for-client %*
bundled/scripts/noConfigScripts/debugpy.ps1
@@ -1,2 +1,6 @@
# PowerShell script
-python3 $env:BUNDLED_DEBUGPY_PATH --listen 0 --wait-for-client $args
+if ($PSVersionTable.OS -match "Windows") {
+ python $env:BUNDLED_DEBUGPY_PATH --listen 0 --wait-for-client $args
4
+} else {
5
+ python3 $env:BUNDLED_DEBUGPY_PATH --listen 0 --wait-for-client $args
6
+}
0 commit comments