From: Ian Jackson Date: Mon, 4 May 2015 16:23:37 +0000 (+0100) Subject: dgit-repos-policy-debian: Fix mode calculation X-Git-Tag: debian/0.30~186 X-Git-Url: https://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?p=dgit.git;a=commitdiff_plain;h=ef676d2d2e300a8b81166929ab836ba7e50a1356;hp=e270c55f02ce8839a6a2f4fbc316b213e4eaa9d1 dgit-repos-policy-debian: Fix mode calculation --- diff --git a/infra/dgit-repos-policy-debian b/infra/dgit-repos-policy-debian index 2e0bcc79..ce98cd72 100755 --- a/infra/dgit-repos-policy-debian +++ b/infra/dgit-repos-policy-debian @@ -376,7 +376,10 @@ END my $oldmode = ((stat _)[2]); my $oldwrites = $oldmode & 0222; # remove r and x bits which have corresponding w bits clear - my $newmode = $oldmode & ($oldwrites << 1) & ($oldwrites > 1); + my $newmode = $oldmode & + (~0555 | ($oldwrites << 1) | ($oldwrites >> 1)); + printdebug sprintf "chmod %#o (was %#o) %s\n", + $newmode, $oldmode, $freshrepo; chmod $newmode, $freshrepo or die $!; } }