Skip to content

Commit

Permalink
vxOpenLibm - v1.0.0-rc1 : fix verbose handling for bash 3.x
Browse files Browse the repository at this point in the history
*fix*
> [scripts]
  | [install] fix VERBOSE check for bash 3.x support
  • Loading branch information
YannMagnin committed Dec 20, 2023
1 parent e7188a6 commit a0d9a87
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions scripts/_utils.sh
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,8 @@ export TOP_PID=$$

export TAG='<vxOpenLibm>'

# abstract the verbose mode
function callcmd() {
if [[ -v 'VERBOSE' ]]
if [[ "$VERBOSE" == '1' ]]
then
echo "$@"
if ! "$@"; then
Expand Down

0 comments on commit a0d9a87

Please sign in to comment.