From: Adam Dinwoodie Date: Wed, 23 Dec 2020 11:44:31 +0000 (+0000) Subject: t4129: fix setfacl-related permissions failure X-Git-Tag: v2.30.1~23^2 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=a1e03535db70eea3ffdff0ca0ec286e489cda648;p=thirdparty%2Fgit.git t4129: fix setfacl-related permissions failure When running this test in Cygwin, it's necessary to remove the inherited access control lists from the Git working directory in order for later permissions tests to work as expected. As such, fix an error in the test script so that the ACLs are set for the working directory, not a nonexistent subdirectory. Signed-off-by: Adam Dinwoodie Reviewed-by: Matheus Tavares Signed-off-by: Junio C Hamano --- diff --git a/t/t4129-apply-samemode.sh b/t/t4129-apply-samemode.sh index 41818d8315..576632f868 100755 --- a/t/t4129-apply-samemode.sh +++ b/t/t4129-apply-samemode.sh @@ -78,7 +78,7 @@ test_expect_success POSIXPERM 'do not use core.sharedRepository for working tree test_config core.sharedRepository 0666 && ( # Remove a default ACL if possible. - (setfacl -k newdir 2>/dev/null || true) && + (setfacl -k . 2>/dev/null || true) && umask 0077 && # Test both files (f1) and leading dirs (d)