File tree Expand file tree Collapse file tree 3 files changed +7
-3
lines changed
bundled/scripts/noConfigScripts Expand file tree Collapse file tree 3 files changed +7
-3
lines changed Original file line number Diff line number Diff line change 1
1
#! /bin/bash
2
2
# Bash script
3
- python $BUNDLED_DEBUGPY_PATH --listen 0 --wait-for-client $@
3
+ python3 $BUNDLED_DEBUGPY_PATH --listen 0 --wait-for-client $@
Original file line number Diff line number Diff line change 1
1
# Fish script
2
- python $BUNDLED_DEBUGPY_PATH --listen 0 --wait-for-client $argv
2
+ python3 $BUNDLED_DEBUGPY_PATH --listen 0 --wait-for-client $argv
Original file line number Diff line number Diff line change 1
1
# PowerShell script
2
- python $env: BUNDLED_DEBUGPY_PATH -- listen 0 -- wait-for - client $args
2
+ if ($PSVersionTable.OS -match " Windows" ) {
3
+ 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
+ }
You can’t perform that action at this time.
0 commit comments