search for: 71a0c8c

Displaying 1 result from an estimated 1 matches for "71a0c8c".

2016 Dec 14
1
[PATCH supermin] tests: fix test-binaries-exist.sh with bash 4.4
...actually looks for the 'sync' utility from coreutils, filter out the bash-specific paths from the search results. --- tests/test-binaries-exist.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test-binaries-exist.sh b/tests/test-binaries-exist.sh index c40ce93..71a0c8c 100755 --- a/tests/test-binaries-exist.sh +++ b/tests/test-binaries-exist.sh @@ -56,7 +56,7 @@ if [ "$(find $d2 -name sync -perm -0555 | wc -l)" -lt 1 ]; then fi # These binaries should be runnable (since they are the same as the host). -`find $d2 -name sync | head` +`find $d2 -name s...