mirror of
https://github.com/SteamDeckHomebrew/decky-plugin-template.git
synced 2025-11-07 01:19:32 -06:00
Remove shell script and ensure tasks inherit terminal path
This commit is contained in:
parent
14dfd8e8c2
commit
260c21e915
2 changed files with 10 additions and 10 deletions
10
.vscode/build.sh
vendored
10
.vscode/build.sh
vendored
|
|
@ -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)
|
|
||||||
10
.vscode/tasks.json
vendored
10
.vscode/tasks.json
vendored
|
|
@ -1,5 +1,15 @@
|
||||||
{
|
{
|
||||||
"version": "2.0.0",
|
"version": "2.0.0",
|
||||||
|
"options": {
|
||||||
|
"shell": {
|
||||||
|
"executable": "/bin/bash",
|
||||||
|
"args": [
|
||||||
|
"-l",
|
||||||
|
"-i",
|
||||||
|
"-c"
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
"tasks": [
|
"tasks": [
|
||||||
{
|
{
|
||||||
"label": "setup",
|
"label": "setup",
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue