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 11#! /bin/bash
22# 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 11# 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 11# 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