Script question

Hello, I am attempting to run

bash -c "$(curl https://raw.githubusercontent.com/dqx-translation-project/steamdeck/refs/heads/main/install.sh)"

in the terminal but I either receive "User canceld" message which comes from

exitstatus=$?
if [ $exitstatus != 0 ]; then
echo "User canceled."
break
fi
of the script

or "File does not exist" if I attempt to run it as a sh file.
Any suggestions?
Was this page helpful?