Thanks to visit codestin.com
Credit goes to github.com

Skip to content

_BM_CMD_CAPTURE_CHECK not properly evaluated #30

@jman223

Description

@jman223

Line 947 does not properly evaluate _BM_CMD_CAPTURE_CHECK and always executes the checkBinaries function even if the _BM_CMD_CAPTURE_CHECK variable is set to FALSE. Modifying the line to evaluate the variable against TRUE produces the desired results.

Current
[[ ${_BM_CMD_CAPTURE_CHECK} ]] && checkBinaries "${_BM_CMD_CAPTURE}"

modified
[[ ${_BM_CMD_CAPTURE_CHECK} = 'true' ]] && checkBinaries "${_BM_CMD_CAPTURE}"

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions