# HG changeset patch # User Rob Landley # Date 1276487827 18000 # Node ID e5ace7f9f4d4ca50b9954fa82903869ccbda00c6 # Parent 25607cc50c8ff20907c69a6c918e4f0e2bec39ce More trouble than its worth for FORK and QUIET to be separate knobs. diff -r 25607cc50c8f -r e5ace7f9f4d4 sources/utility_functions.sh --- a/sources/utility_functions.sh Sun Jun 13 22:55:53 2010 -0500 +++ b/sources/utility_functions.sh Sun Jun 13 22:57:07 2010 -0500 @@ -77,7 +77,7 @@ maybe_quiet() { - [ -z "$QUIET" ] && cat || grep "^===" + [ -z "$FORK" ] && cat || grep "^===" } # Run a command background if FORK is set, in foreground otherwise