From 7d95b48a05b60d7807d40090fae30a18e848f3de Mon Sep 17 00:00:00 2001 From: Justin Grote Date: Fri, 19 Jun 2020 15:09:52 +0000 Subject: [PATCH] Fix: Add proper shell and bash debugging extension --- .devcontainer/devcontainer.json | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json index b470e0aa..1d430c89 100644 --- a/.devcontainer/devcontainer.json +++ b/.devcontainer/devcontainer.json @@ -11,11 +11,13 @@ // Set *default* container specific settings.json values on container create. "settings": { - "terminal.integrated.shell.linux": null + "terminal.integrated.shell.linux": "/bin/ash" }, // Add the IDs of extensions you want installed when the container is created. - "extensions": [] + "extensions": [ + "rogalmic.bash-debug" + ] // Use 'forwardPorts' to make a list of ports inside the container available locally. // "forwardPorts": [],