From 5224fbd6f904633b72f4bfa9d64e903744b0beae Mon Sep 17 00:00:00 2001 From: Jim Meyering Date: Thu, 3 Dec 2009 17:04:16 +0100 Subject: tests: fix a bug in sanitize_path_ that inhibited verbose output * tests/test-lib.sh (sanitize_path_): Use "set -- ...", not "set - ...", since the latter turns off the -x setting we rely on for VERBOSE=yes output. --- tests/test-lib.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test-lib.sh b/tests/test-lib.sh index 06087ea29..e600a9c67 100644 --- a/tests/test-lib.sh +++ b/tests/test-lib.sh @@ -30,7 +30,7 @@ sanitize_path_() { local saved_IFS=$IFS IFS=: - set - $PATH + set -- $PATH IFS=$saved_IFS local d d1 -- cgit v1.2.3-54-g00ecf