Skip to content

Commit

Permalink
Merge pull request #167 from essentialkaos/develop
Browse files Browse the repository at this point in the history
Fix bibop-massive script compatibility with the latest version of bibop
  • Loading branch information
andyone authored Nov 2, 2023
2 parents 9e9ed0b + 784274c commit 31e80c3
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion cli/executor/validators.go
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions scripts/bibop-massive
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
################################################################################

APP="bibop-massive"
VER="1.12.0"
VER="1.12.1"
DESC="Utility for mass package testing"

################################################################################
Expand Down Expand Up @@ -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 $?
}
Expand Down

0 comments on commit 31e80c3

Please sign in to comment.