X-Git-Url: https://git.tokkee.org/?a=blobdiff_plain;f=t%2Ft1301-shared-repo.sh;h=6bfe19a4e5e8a22bfd286636e62c0c2d5cd56846;hb=55246aac6717e86c14f31391ac903ed810d1a9a0;hp=bb5f30220ac96585d54e7b258bbbabcc16e1a551;hpb=db1a4bc168f951ba23eba5bbcdb42fc683feb657;p=git.git diff --git a/t/t1301-shared-repo.sh b/t/t1301-shared-repo.sh index bb5f30220..6bfe19a4e 100755 --- a/t/t1301-shared-repo.sh +++ b/t/t1301-shared-repo.sh @@ -21,7 +21,16 @@ test_expect_success 'update-server-info honors core.sharedRepository' ' git commit -m a1 && umask 0277 && git update-server-info && - test 444 = $(stat -c %a .git/info/refs) + actual="$(ls -l .git/info/refs)" && + case "$actual" in + -r--r--r--*) + : happy + ;; + *) + echo Oops, .git/info/refs is not 0444 + false + ;; + esac ' test_done