mirror of
https://github.com/SteamDeckHomebrew/decky-plugin-template.git
synced 2026-05-19 07:00:07 +02:00
11 lines
230 B
Bash
Executable File
11 lines
230 B
Bash
Executable File
#!/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)
|