From 47fc679049c11ab28384920d0027bb581827572e Mon Sep 17 00:00:00 2001 From: Randy Fay Date: Mon, 23 Sep 2024 07:20:38 -0600 Subject: [PATCH] Skip chmod of postCreateCommand.sh The postCreateCommand.sh is already executable in git as checked in here, and so `chmod` isn't needed. But even if it were, just running the script with `bash` is probably nicer. --- .devcontainer/devcontainer.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json index f06f71d..abab920 100644 --- a/.devcontainer/devcontainer.json +++ b/.devcontainer/devcontainer.json @@ -31,5 +31,5 @@ } }, - "postCreateCommand": "chmod +x ./.devcontainer/postCreateCommand.sh && ./.devcontainer/postCreateCommand.sh" + "postCreateCommand": "bash ./.devcontainer/postCreateCommand.sh" }