]> git.ipfire.org Git - thirdparty/openssh-portable.git/commitdiff
Remove extended ACLs from working dirs.
authorDarren Tucker <dtucker@dtucker.net>
Sat, 25 Feb 2023 03:43:28 +0000 (14:43 +1100)
committerDarren Tucker <dtucker@dtucker.net>
Sat, 25 Feb 2023 03:43:28 +0000 (14:43 +1100)
This should allow umask to work as expected and prevent tests from
failing due to excessive permissions on private keys.

.github/setup_ci.sh

index e4480e614f3145d051205207fda8fcbaa00c5dd5..691c70dd7ed61785a094b62b06a47aaf77bae90b 100755 (executable)
@@ -7,10 +7,10 @@ PACKAGES=""
 case "`./config.guess`" in
 *cygwin)
        PACKAGER=setup
-       echo Setting CYGWIN sustem environment variable.
+       echo Setting CYGWIN system environment variable.
        setx CYGWIN "binmode"
-       chmod -R go-rw /cygdrive/d/a
-       umask 077
+       echo Removing extended ACLs so umask works as expected.
+       setfacl -b . regress
        PACKAGES="$PACKAGES,autoconf,automake,cygwin-devel,gcc-core"
        PACKAGES="$PACKAGES,make,openssl-devel,zlib-devel"
        ;;