summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTrainDoctor <traindoctor@protonmail.com>2024-02-04 17:51:53 -0800
committerTrainDoctor <traindoctor@protonmail.com>2024-02-04 17:51:53 -0800
commit498ca9b13d5fc951a4d1be7b0f4e0f5e9aef0fc6 (patch)
tree621143ac96fea32063357f497e5abf72907467d6
parent8f6c61207f4afe623d9f00b2cca3681434d9d4de (diff)
downloaddecky-bazzite-buddy-498ca9b13d5fc951a4d1be7b0f4e0f5e9aef0fc6.tar.gz
decky-bazzite-buddy-498ca9b13d5fc951a4d1be7b0f4e0f5e9aef0fc6.zip
Support spaces in pwd
-rwxr-xr-x.vscode/setup.sh6
1 files changed, 3 insertions, 3 deletions
diff --git a/.vscode/setup.sh b/.vscode/setup.sh
index 90701ff..792e641 100755
--- a/.vscode/setup.sh
+++ b/.vscode/setup.sh
@@ -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