mirror of
https://github.com/SteamDeckHomebrew/decky-loader.git
synced 2026-06-16 10:30:13 +03:00
Removed a line that would exclude passwords with non-alnum characters.
This commit is contained in:
@@ -96,7 +96,7 @@ checksshkey() {
|
||||
|
||||
checkpassword() {
|
||||
### check to make sure a password for 'deck' was specified
|
||||
if [[ "$1" == "" ]] || ! [[ "$1" =~ ^[[:alnum:]]+$ ]]; then
|
||||
if [[ "$1" == "" ]]; then
|
||||
printf "Remote deck user password was not provided, exiting.\n"
|
||||
exit 1
|
||||
fi
|
||||
|
||||
Reference in New Issue
Block a user