testfull.sh: Use `xargs`
authorJean-Christophe Beaupré <jcbrinfo@users.noreply.github.com>
Sat, 3 Jun 2017 17:55:35 +0000 (13:55 -0400)
committerJean-Christophe Beaupré <jcbrinfo@users.noreply.github.com>
Sat, 3 Jun 2017 17:56:22 +0000 (13:56 -0400)
That way, `listfull.sh` can quote the paths

Signed-off-by: Jean-Christophe Beaupré <jcbrinfo@users.noreply.github.com>

tests/testfull.sh

index 6d159e9..1cc4d27 100755 (executable)
@@ -1,2 +1,2 @@
 #!/bin/sh
-./tests.sh "$@" `./listfull.sh`
+./listfull.sh | xargs -E '' -x -- ./tests.sh "$@"