Skip to content

Commit

Permalink
Merge pull request #160 from essentialkaos/develop
Browse files Browse the repository at this point in the history
Version 7.4.1
  • Loading branch information
andyone authored Oct 9, 2023
2 parents 2d57ca5 + a5dda8a commit e75f514
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion cli/cli.go
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ import (
// Application info
const (
APP = "bibop"
VER = "7.4.0"
VER = "7.4.1"
DESC = "Utility for testing command-line tools"
)

Expand Down
2 changes: 1 addition & 1 deletion cli/executor/executor.go
Original file line number Diff line number Diff line change
Expand Up @@ -290,7 +290,7 @@ func runCommand(e *Executor, rr render.Renderer, c *recipe.Command) bool {
}

if err != nil {
if !e.config.Quiet && e.config.Debug && !cmdEnv.output.IsEmpty() {
if !e.config.Quiet && e.config.Debug && cmdEnv.output != nil && !cmdEnv.output.IsEmpty() {
fmtc.NewLine()
panel.Panel(
"☴ OUTPUT", "{y}", "The last 10 lines from command output",
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.10.0"
VER="1.10.1"
DESC="Utility for mass package testing"

################################################################################
Expand Down Expand Up @@ -671,7 +671,7 @@ execRecipeVerbose() {
wrk_dir=$(dirname "$recipe")

# shellcheck disable=SC2086
bibop -d "$wrk_dir" $opts "$recipe"
bibop -X -d "$wrk_dir" $opts "$recipe"

return $?
}
Expand Down

0 comments on commit e75f514

Please sign in to comment.