Skip to content

Commit

Permalink
Fix option processing bug introduced in vufind-org#2995. (vufind-org#…
Browse files Browse the repository at this point in the history
  • Loading branch information
demiankatz authored Dec 5, 2023
1 parent 5f67cc0 commit f470365
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions harvest/batch-import-marc.sh
Original file line number Diff line number Diff line change
Expand Up @@ -51,11 +51,11 @@ Options:
EOF
}

while getopts ":dhmpx:z" OPT
while getopts ":dhmp:x:z" OPT
do
case $OPT in
d) BASEPATH_UNDER_HARVEST=false;;
h) usage;
h) usage;
exit 0;;
m) MOVE_DATA=false;;
p) PROPERTIES_FILE="$OPTARG"; export PROPERTIES_FILE;;
Expand Down

0 comments on commit f470365

Please sign in to comment.