mirror of
https://github.com/SteamDeckHomebrew/decky-plugin-template.git
synced 2026-05-17 14:10:08 +02:00
Support spaces in pwd
This commit is contained in:
6
.vscode/setup.sh
vendored
6
.vscode/setup.sh
vendored
@@ -40,9 +40,9 @@ if ! test -f "$CLI_INSTALLED"; then
|
||||
if [[ "$run_cli_script" =~ "n" ]]; then
|
||||
echo "You have chosen to not install the Decky CLI tool to build your plugins. Please install this tool to build and test your plugin before submitting it to the Plugin Database."
|
||||
else
|
||||
mkdir $(pwd)/cli
|
||||
curl -L -o $(pwd)/cli/decky "https://github.com/SteamDeckHomebrew/cli/releases/latest/download/decky"
|
||||
chmod +x $(pwd)/cli/decky
|
||||
mkdir "$(pwd)"/cli
|
||||
curl -L -o "$(pwd)"/cli/decky "https://github.com/SteamDeckHomebrew/cli/releases/latest/download/decky"
|
||||
chmod +x "$(pwd)"/cli/decky
|
||||
echo "Decky CLI tool is now installed and you can build plugins into easy zip files using the "Build Zip" Task in vscodium."
|
||||
fi
|
||||
fi
|
||||
|
||||
Reference in New Issue
Block a user