committed by
Tom Limoncelli
parent
818db98506
commit
bd0fcd181c
@@ -390,9 +390,12 @@ function md5sum_file() {
|
||||
function cp_permissions() {
|
||||
# Copy the perms of $1 onto $2 .. end.
|
||||
case $(uname -s) in
|
||||
Darwin | FreeBSD )
|
||||
Darwin )
|
||||
chmod $( stat -f '%p' "$1" ) "${@:2}"
|
||||
;;
|
||||
FreeBSD )
|
||||
chmod $( stat -f '%p' "$1" | sed -e "s/^100//" ) "${@:2}"
|
||||
;;
|
||||
Linux | CYGWIN* | MINGW* )
|
||||
chmod --reference "$1" "${@:2}"
|
||||
;;
|
||||
|
||||
Reference in New Issue
Block a user