Comment 1 for bug 1839492

Revision history for this message
Emil Mikulic (darkmoon) wrote :

Shouldn't:
 test "$START_DARKSTAT" = "yes" || exit 0
Mean "variable has to equal yes or else early exit" ?

$ test "$X" = "yes" || echo early exit
early exit
$ export X=yes; test "$X" = "yes" || echo early exit
$

What am I missing?