mirror of
https://github.com/smxi/inxi.git
synced 2025-01-19 00:47:47 +00:00
bug fix.
This commit is contained in:
parent
423d7f5826
commit
37c64f3f26
4
inxi
4
inxi
|
@ -1,7 +1,7 @@
|
||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
########################################################################
|
########################################################################
|
||||||
#### Script Name: inxi
|
#### Script Name: inxi
|
||||||
#### version: 0.8.13.b2.4
|
#### version: 0.8.13.b2.5
|
||||||
#### Date: December 22 2008
|
#### Date: December 22 2008
|
||||||
########################################################################
|
########################################################################
|
||||||
#### inxi is a fork of infobash 3.02, the original bash sys info script by locsmif
|
#### inxi is a fork of infobash 3.02, the original bash sys info script by locsmif
|
||||||
|
@ -495,7 +495,7 @@ error_handler()
|
||||||
# args: $1 - $@ debugging string text
|
# args: $1 - $@ debugging string text
|
||||||
script_debugger()
|
script_debugger()
|
||||||
{
|
{
|
||||||
if [[ $(B_SCRIPT_UP) ]];then
|
if [[ $B_SCRIPT_UP == 'true' ]];then
|
||||||
# only return if debugger is off and no pre start up errors have occured
|
# only return if debugger is off and no pre start up errors have occured
|
||||||
if [[ $DEBUG -eq 0 && $DEBUG_BUFFER_INDEX -eq 0 ]];then
|
if [[ $DEBUG -eq 0 && $DEBUG_BUFFER_INDEX -eq 0 ]];then
|
||||||
return 0
|
return 0
|
||||||
|
|
Loading…
Reference in a new issue