From 3214e5b5596037cd2a0e195e8fe54423f862eaba Mon Sep 17 00:00:00 2001 From: Mark Phippard Date: Mon, 22 Sep 2025 07:59:52 -0400 Subject: [PATCH 1/2] Change install command from sh to bash --- src/devtool/install.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/devtool/install.sh b/src/devtool/install.sh index c028549..2deb23a 100644 --- a/src/devtool/install.sh +++ b/src/devtool/install.sh @@ -59,7 +59,7 @@ for i in {1..180}; do done echo "::step::Installing DevTool..." cd /tmp -curl -sL https://aka.ms/InstallToolLinux.sh | sh -s DevTool +curl -sL https://aka.ms/InstallToolLinux.sh | bash -s DevTool EOF chmod 755 "$DEVTOOL_SCRIPT_PATH" @@ -78,4 +78,4 @@ echo "Adding DevTool to PATH for root" echo "export PATH=\$PATH:/root/.config/DevTool/CurrentVersion" >> /etc/bash.bashrc || true echo "export PATH=\$PATH:/root/.config/DevTool/CurrentVersion" >> /etc/zsh/zshrc || true -exit 0 \ No newline at end of file +exit 0 From a7b8c9a0343278d4f2438d517166ddac1b5d8042 Mon Sep 17 00:00:00 2001 From: Mark Phippard Date: Mon, 22 Sep 2025 08:00:20 -0400 Subject: [PATCH 2/2] Bump DevTool version from 1.0.2 to 1.0.3 --- src/devtool/devcontainer-feature.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/devtool/devcontainer-feature.json b/src/devtool/devcontainer-feature.json index 77a50a2..9648a08 100644 --- a/src/devtool/devcontainer-feature.json +++ b/src/devtool/devcontainer-feature.json @@ -1,7 +1,7 @@ { "name": "DevTool", "id": "devtool", - "version": "1.0.2", + "version": "1.0.3", "description": "Install DevTool", "installsAfter": [ "ghcr.io/devcontainers/features/common-utils"