Merge branch 'maint'

* maint:
  t1304: fall back to $USER if $LOGNAME is not defined
This commit is contained in:
Junio C Hamano
2011-10-14 12:51:24 -07:00

View File

@ -25,6 +25,11 @@ else
test_set_prereq SETFACL
fi
if test -z "$LOGNAME"
then
LOGNAME=$USER
fi
check_perms_and_acl () {
test -r "$1" &&
getfacl "$1" > actual &&