commit e759ffb1822a3cd2889ada46289e191cc3cb88b9
parent 2498bf4bfa8e807526372964ab91245f661c8586
Author: John Kubach <johnkubach@gmail.com>
Date: Thu, 4 Apr 2019 11:36:41 -0400
Script code fix
Diffstat:
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/src/scripts/archiver.sh b/src/scripts/archiver.sh
@@ -12,14 +12,14 @@ EMPLOYEE=""
# -c : [c]onsult letter
# -n : uploader last [n]ame
-while getopts ":n:f:sltpc" opt
+while getopts ":n:f:alspc" opt
do
case "${opt}" in
n) EMPLOYEE=${OPTARG};;
f) FILE=${OPTARG};;
- s) DOCTYPE="Cover_Sheet";;
+ a) DOCTYPE="Assessement_Form";;
l) DOCTYPE="Lib_Form";;
- t) DOCTYPE="Template";;
+ s) DOCTYPE="Supporting_Doc";;
p) DOCTYPE="Pgrm_Guide";;
c) DOCTYPE="Consult_Letter";;
esac