From ed1d8f18465b0e7cf432d6b8a7556d05b6b284b9 Mon Sep 17 00:00:00 2001 From: matanya Date: Mon, 20 Oct 2014 12:43:31 +0300 Subject: [PATCH] look for username in case insensitive way To work with pre beta 2 installations. --- scripts/install | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/install b/scripts/install index e71636e..15a8615 100755 --- a/scripts/install +++ b/scripts/install @@ -7,7 +7,7 @@ admin_user=$3 # Check user parameter -sudo yunohost user list --json | grep -q "\"username\": \"$admin_user\"" +sudo yunohost user list --json | grep -qi "\"username\": \"$admin_user\"" if [[ ! $? -eq 0 ]]; then echo "Wrong user" exit 1 @@ -101,4 +101,4 @@ sudo yunohost app setting freshrss skipped_uris -v /api/greader.php # Reload Nginx and regenerate SSOwat conf sudo service nginx reload -sudo yunohost app ssowatconf \ No newline at end of file +sudo yunohost app ssowatconf