summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorParty Wumpus <48649272+PartyWumpus@users.noreply.github.com>2024-07-09 13:36:56 +0100
committerGitHub <noreply@github.com>2024-07-09 13:36:56 +0100
commit4f11a7d836ad982fb2217129f09b390d62393e46 (patch)
treecc90c38df46c7c6069549580c58b5555b2c8f4a6
parente3232d595e8fff3e2d64b847e1405099ed476ea9 (diff)
parent3ba1a7a514e2272a004cae94285afc9efaba9ad4 (diff)
downloaddecky-installer-4f11a7d836ad982fb2217129f09b390d62393e46.tar.gz
decky-installer-4f11a7d836ad982fb2217129f09b390d62393e46.zip
Merge pull request #18 from mosamadeeb/fix-flatpak-installer
Fix broken command when enabling debugging for flatpak
-rw-r--r--cli/install_release.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/cli/install_release.sh b/cli/install_release.sh
index ef06d10..f7b1967 100644
--- a/cli/install_release.sh
+++ b/cli/install_release.sh
@@ -28,7 +28,7 @@ sudo -u $SUDO_USER mkdir -p "${HOMEBREW_FOLDER}/services"
sudo -u $SUDO_USER mkdir -p "${HOMEBREW_FOLDER}/plugins"
sudo -u $SUDO_USER touch "${USER_DIR}/.steam/steam/.cef-enable-remote-debugging"
# if installed as flatpak, put .cef-enable-remote-debugging there
-[ -d "${USER_DIR}/.var/app/com.valvesoftware.Steam/data/Steam/" ] && sudo -u "$SUDO_USER touch ${USER_DIR}/.var/app/com.valvesoftware.Steam/data/Steam/.cef-enable-remote-debugging"
+[ -d "${USER_DIR}/.var/app/com.valvesoftware.Steam/data/Steam/" ] && sudo -u $SUDO_USER touch "${USER_DIR}/.var/app/com.valvesoftware.Steam/data/Steam/.cef-enable-remote-debugging"
# Download latest release and install it
RELEASE=$(curl -s 'https://api.github.com/repos/SteamDeckHomebrew/decky-loader/releases' | jq -r "first(.[] | select(.prerelease == "false"))")