From 7767e25ef273ddee43a6d52b93663dde85ce493d Mon Sep 17 00:00:00 2001 From: Adarsh Tiwari <134617221+Adarsh9977@users.noreply.github.com> Date: Tue, 17 Jun 2025 07:35:14 +0530 Subject: [PATCH] add zsh installation in postCreateCommand (#1244) --- .devcontainer/devcontainer.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json index eea8cdbe5..b8727fda3 100644 --- a/.devcontainer/devcontainer.json +++ b/.devcontainer/devcontainer.json @@ -31,5 +31,5 @@ }, // Use 'postCreateCommand' to run commands after the container is created. - "postCreateCommand": "zsh" + "postCreateCommand": "apt update && apt install -y zsh && zsh" }