From: Darren Tucker Date: Sat, 25 Feb 2023 03:43:28 +0000 (+1100) Subject: Remove extended ACLs from working dirs. X-Git-Tag: V_9_3_P1~60 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=52b75db61030a6c8baf66b73644380cf3f58e26a;p=thirdparty%2Fopenssh-portable.git Remove extended ACLs from working dirs. This should allow umask to work as expected and prevent tests from failing due to excessive permissions on private keys. --- diff --git a/.github/setup_ci.sh b/.github/setup_ci.sh index e4480e614..691c70dd7 100755 --- a/.github/setup_ci.sh +++ b/.github/setup_ci.sh @@ -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" ;;