mirror of
https://github.com/SteamDeckHomebrew/decky-plugin-template.git
synced 2025-10-29 06:22:25 -05:00
11 lines
227 B
Bash
11 lines
227 B
Bash
|
|
#!/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 $CLI_LOCATION/decky plugin build $(pwd)
|