From 30c90bccaa358d0817cfedd11f246ab21ef1f159 Mon Sep 17 00:00:00 2001 From: Pablo Santiago Blum de Aguiar Date: Wed, 21 Jul 2021 13:33:41 +0200 Subject: [PATCH] #1184: Configure devcontainer shell with recommended way https://code.visualstudio.com/docs/editor/integrated-terminal#_configuration --- .devcontainer/devcontainer.json | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json index b59f5626..8bf7e467 100644 --- a/.devcontainer/devcontainer.json +++ b/.devcontainer/devcontainer.json @@ -9,7 +9,12 @@ // Set *default* container specific settings.json values on container create. "settings": { - "terminal.integrated.shell.linux": "/bin/bash", + "terminal.integrated.profiles.linux": { + "bash (login)": { + "path": "bash", + "args": ["-l"] + } + }, "python.pythonPath": "/usr/local/bin/python", "python.linting.enabled": true, "python.linting.pylintEnabled": true,