Fix arg error in cert gen

This commit is contained in:
Taylor Helsper 2020-02-18 23:20:00 -06:00
parent 5dede9dc95
commit 04e3e867cb

View File

@ -13,7 +13,7 @@ if [ ! -z "$1" ]; then
HDD_DIR="${HDD_DIR_BASE}/$1" HDD_DIR="${HDD_DIR_BASE}/$1"
fi fi
DAYS=99999 DAYS=99999
if [ ! -z "$1" ]; then if [ ! -z "$2" ]; then
DAYS=$2 DAYS=$2
fi fi