From bb49c0bb63facbc4771e507423e01a35ced17615 Mon Sep 17 00:00:00 2001 From: Asharas <2588755-Asharas@users.noreply.gitlab.com> Date: Sun, 10 Jul 2022 22:03:11 +0200 Subject: [PATCH] Fix JIRAFEAU_UPLOAD_PASSWD use. Variable in help is described as JIRAFEAU_UPLOAD_PASSWD but both tested and assigned variables have the wrong name. --- script.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/script.php b/script.php index de105ba..0d4aeab 100644 --- a/script.php +++ b/script.php @@ -260,8 +260,8 @@ if [ -n "$JIRAFEAU_ONE_TIME" ]; then one_time='1' fi -if [ -n "$UPLOAD_PASSWD" ]; then - upload_password="$JIRAFEAU_UPLOAD_PASSWORD" +if [ -n "$JIRAFEAU_UPLOAD_PASSWD" ]; then + upload_password="$JIRAFEAU_UPLOAD_PASSWD" fi if [ -z "$curl" ]; then -- 2.34.1