We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cc17200 commit 537b70dCopy full SHA for 537b70d
bundled/scripts/noConfigScripts/debugpy
@@ -1,3 +1,3 @@
1
#! /bin/bash
2
# Bash script
3
-python $BUNDLED_DEBUGPY_PATH --listen 0 --wait-for-client $@
+python3 $BUNDLED_DEBUGPY_PATH --listen 0 --wait-for-client $@
bundled/scripts/noConfigScripts/debugpy.fish
@@ -1,2 +1,2 @@
# Fish script
-python $BUNDLED_DEBUGPY_PATH --listen 0 --wait-for-client $argv
+python3 $BUNDLED_DEBUGPY_PATH --listen 0 --wait-for-client $argv
bundled/scripts/noConfigScripts/debugpy.ps1
@@ -1,2 +1,6 @@
# PowerShell script
-python $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