From 784274c99087dc2e3e2dd2b32cfcb621d1b652d1 Mon Sep 17 00:00:00 2001 From: Anton Novojilov Date: Thu, 2 Nov 2023 12:54:21 +0300 Subject: [PATCH] Fix bibop-massive script compatibility with the latest version of bibop --- cli/executor/validators.go | 2 +- scripts/bibop-massive | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/cli/executor/validators.go b/cli/executor/validators.go index 25f5b0ca..b14a9f83 100644 --- a/cli/executor/validators.go +++ b/cli/executor/validators.go @@ -218,7 +218,7 @@ func convertSubmatchToErrors(knownVars []string, data [][]string, line uint16) [ continue } - errs = append(errs, fmt.Errorf("Line %d: can't find variable with name %s", line, match[1])) + errs = append(errs, fmt.Errorf("Line %d: Can't find variable with name %s", line, match[1])) } return errs diff --git a/scripts/bibop-massive b/scripts/bibop-massive index 0c89025c..804c6808 100755 --- a/scripts/bibop-massive +++ b/scripts/bibop-massive @@ -3,7 +3,7 @@ ################################################################################ APP="bibop-massive" -VER="1.12.0" +VER="1.12.1" DESC="Utility for mass package testing" ################################################################################ @@ -699,7 +699,7 @@ execRecipeVerbose() { wrk_dir=$(dirname "$recipe") # shellcheck disable=SC2086 - bibop -X -d "$wrk_dir" $opts "$recipe" + bibop -d "$wrk_dir" $opts "$recipe" return $? }