fix(bkgpslog):Fix incorrectly selected argument
authorSteven Baltakatei Sandoval <baltakatei@gmail.com>
Wed, 1 Jul 2020 19:57:29 +0000 (19:57 +0000)
committerSteven Baltakatei Sandoval <baltakatei@gmail.com>
Wed, 1 Jul 2020 19:57:29 +0000 (19:57 +0000)
exec/bkgpslog

index 2eed9ba7a7755b61d85348d75a04ab64687d3bc1..c49cee632986b8bd872b7939f482ad98ee52c744 100755 (executable)
@@ -214,8 +214,8 @@ processArguments() {
            -r | --recipient) # Add 'age' recipient via public key string
                recPubKeys+=("$2"); vbm "pubkey added:""$2"; shift;;
            -c | --compress) OPTION_COMPRESS="true"; vbm "DEBUG:Compressed output mode enabled.";;
-           -z | --time-zone) try setTimeZoneEV "$1";;
-           -t | --temp-dir) OPTION_TMPDIR="true" && TMP_DIR_PRIORITY="$1";;
+           -z | --time-zone) try setTimeZoneEV "$2";;
+           -t | --temp-dir) OPTION_TMPDIR="true" && TMP_DIR_PRIORITY="$2";;
            *) echoerr "ERROR: Unrecognized argument."; exit 1;; # Handle unrecognized options.
        esac
        shift