From f2cbf1705e5e98d2af96814930cc62e5b47831f7 Mon Sep 17 00:00:00 2001 From: Anton Novojilov Date: Mon, 2 Oct 2023 13:19:44 +0300 Subject: [PATCH] Add barcode support to bibop-massive script --- scripts/bibop-massive | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/scripts/bibop-massive b/scripts/bibop-massive index ee5e1989..d6cc5e37 100755 --- a/scripts/bibop-massive +++ b/scripts/bibop-massive @@ -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") @@ -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 @@ -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 }