summaryrefslogtreecommitdiff
path: root/contrib
diff options
context:
space:
mode:
authorTrainDoctor <11465594+TrainDoctor@users.noreply.github.com>2022-06-06 13:34:58 -0700
committerTrainDoctor <11465594+TrainDoctor@users.noreply.github.com>2022-06-06 13:34:58 -0700
commit90a65dbacebdef2d3e882cc18bcd906ced12cc76 (patch)
tree12c55550b8ea1303c8c898cbd70924e5cbe10c14 /contrib
parentf82848071540ed55173f697054766d38554d5d29 (diff)
downloaddecky-loader-90a65dbacebdef2d3e882cc18bcd906ced12cc76.tar.gz
decky-loader-90a65dbacebdef2d3e882cc18bcd906ced12cc76.zip
Removed a line that would exclude passwords with non-alnum characters.
Diffstat (limited to 'contrib')
-rwxr-xr-xcontrib/deck.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/deck.sh b/contrib/deck.sh
index ea27e310..5866795c 100755
--- a/contrib/deck.sh
+++ b/contrib/deck.sh
@@ -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