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 0289171 commit b6487bdCopy full SHA for b6487bd
bundled/scripts/noConfigScripts/debugpy.bat
@@ -1,3 +1,4 @@
1
@echo off
2
:: Bat script
3
+set DEBUGPY_ADAPTER_ENDPOINTS=%VSCODE_DEBUGPY_ADAPTER_ENDPOINTS%
4
python %BUNDLED_DEBUGPY_PATH% --listen 0 --wait-for-client %*
bundled/scripts/noConfigScripts/debugpy.fish
@@ -1,2 +1,3 @@
# Fish script
+set -x DEBUGPY_ADAPTER_ENDPOINTS $VSCODE_DEBUGPY_ADAPTER_ENDPOINTS
python3 $BUNDLED_DEBUGPY_PATH --listen 0 --wait-for-client $argv
bundled/scripts/noConfigScripts/debugpy.ps1
@@ -1,4 +1,5 @@
# PowerShell script
+$env:DEBUGPY_ADAPTER_ENDPOINTS = $env:VSCODE_DEBUGPY_ADAPTER_ENDPOINTS
$os = [System.Environment]::OSVersion.Platform
if ($os -eq [System.PlatformID]::Win32NT) {
5
python $env:BUNDLED_DEBUGPY_PATH --listen 0 --wait-for-client $args
0 commit comments