From 35325bd63999d45c73396464a4f084d89a110499 Mon Sep 17 00:00:00 2001 From: jakub-pomykala <56261244+jakub-pomykala@users.noreply.github.com> Date: Tue, 21 Feb 2023 09:28:22 -0500 Subject: [PATCH] Fix for dailybuild script (#134) Co-authored-by: Gilbert Kwan --- scripts/dailyBuild.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/dailyBuild.sh b/scripts/dailyBuild.sh index 7f209dc0..d3eecb03 100755 --- a/scripts/dailyBuild.sh +++ b/scripts/dailyBuild.sh @@ -1,5 +1,5 @@ #!/bin/bash -while getopts t:d: flag; do +while getopts t:d:b:u: flag; do case "${flag}" in t) DATE="${OPTARG}" ;; d) DRIVER="${OPTARG}" ;;