# HG changeset patch # User "Yann E. MORIN" # Date 1271956863 -7200 # Node ID c573e3ef5e0767981d3f991c98d2bcb2e0d9b281 # Parent d78dac957ebc522a319b3d8f8f2f5739415162de scripts/savesample: be silent when checking for .config file diff -r d78dac957ebc -r c573e3ef5e07 scripts/saveSample.sh.in --- a/scripts/saveSample.sh.in Wed Apr 21 19:06:29 2010 +0200 +++ b/scripts/saveSample.sh.in Thu Apr 22 19:21:03 2010 +0200 @@ -21,7 +21,10 @@ rm -f "${tmp_log_file}" # Parse the configuration file -CT_TestOrAbort "Configuration file not found. Please create one." -f .config +# Don't use CT_TestOrAbort, it prints the test string to [DEBUG] +if [ ! -f .config ]; then + CT_Abort "Configuration file not found. Please create one." +fi . .config # We can not reliably save a sample which either uses local patches