From 260c21e91533daee9a75c72e0457e1a45f569e6d Mon Sep 17 00:00:00 2001 From: Kim T Date: Fri, 10 Oct 2025 22:20:17 -0700 Subject: [PATCH] Remove shell script and ensure tasks inherit terminal path --- .vscode/build.sh | 10 ---------- .vscode/tasks.json | 10 ++++++++++ 2 files changed, 10 insertions(+), 10 deletions(-) delete mode 100755 .vscode/build.sh diff --git a/.vscode/build.sh b/.vscode/build.sh deleted file mode 100755 index 2310ff0..0000000 --- a/.vscode/build.sh +++ /dev/null @@ -1,10 +0,0 @@ -#!/usr/bin/env bash -CLI_LOCATION="$(pwd)/cli" -echo "Building plugin in $(pwd)" -printf "Please input sudo password to proceed.\n" - -# read -s sudopass - -# printf "\n" - -echo $sudopass | sudo -E $CLI_LOCATION/decky plugin build $(pwd) diff --git a/.vscode/tasks.json b/.vscode/tasks.json index 6f19e2b..024780d 100644 --- a/.vscode/tasks.json +++ b/.vscode/tasks.json @@ -1,5 +1,15 @@ { "version": "2.0.0", + "options": { + "shell": { + "executable": "/bin/bash", + "args": [ + "-l", + "-i", + "-c" + ] + } + }, "tasks": [ { "label": "setup",