Skip to content

Commit

Permalink
Add barcode support to bibop-massive script
Browse files Browse the repository at this point in the history
  • Loading branch information
andyone committed Oct 2, 2023
1 parent 5fc2139 commit f2cbf17
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions scripts/bibop-massive
Original file line number Diff line number Diff line change
Expand Up @@ -390,7 +390,7 @@ runTests() {
runTest() {
local recipe="$1"
local require_install required_packages packages_installed
local start_ts end_ts grace_time skip_tests status barcode
local start_ts end_ts grace_time skip_tests status dots

required_packages=$(bibop -L1 "$recipe")

Expand Down Expand Up @@ -450,7 +450,7 @@ runTest() {
status=$?

if [[ -n "$barcode" ]] ; then
barcode=$(bibop -B "$recipe" 2> /dev/null)
dots=$(bibop -B "$recipe" 2> /dev/null)
fi

if [[ $status -ne $STATUS_OK ]] ; then
Expand Down Expand Up @@ -484,7 +484,7 @@ runTest() {
if [[ -z "$barcode" ]] ; then
show "${CL_DARK} ($grace_time)${CL_NORM}"
else
show "${CL_DARK} ($grace_time)${CL_NORM} $barcode"
show "${CL_DARK} ($grace_time)${CL_NORM} $dots"
fi
}

Expand Down

0 comments on commit f2cbf17

Please sign in to comment.