mirror of
git://git.sv.gnu.org/coreutils.git
synced 2026-04-18 17:56:54 +02:00
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.
This commit is contained in:
@@ -30,7 +30,7 @@ sanitize_path_()
|
||||
{
|
||||
local saved_IFS=$IFS
|
||||
IFS=:
|
||||
set - $PATH
|
||||
set -- $PATH
|
||||
IFS=$saved_IFS
|
||||
|
||||
local d d1
|
||||
|
||||
Reference in New Issue
Block a user