You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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}"
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}"
The text was updated successfully, but these errors were encountered: