install.sh: use chgrp instead of chown :group
commitd0c4d8c7471168c9b8dcfe701dd0e8ffb9218898
authorKyle J. McKay <mackyle@gmail.com>
Thu, 6 Mar 2014 04:53:36 +0000 (5 20:53 -0800)
committerKyle J. McKay <mackyle@gmail.com>
Thu, 6 Mar 2014 04:53:36 +0000 (5 20:53 -0800)
tree03e005917b8e88e904bfa20fa2ebeb78f2d7944d
parent13489e9fce30a75fc0447acac95e1d6304d1488e
install.sh: use chgrp instead of chown :group

Some versions of chown accept an empty user to just change the group
(e.g. chown :mygroup myfile), but this is neither portable nor part
of the POSIX standard.

Replace chown :group with chgrp group to be more widely compatible.
install.sh