Unverified Commit cba6a422 authored by Matthew Brett's avatar Matthew Brett Committed by GitHub
Browse files

Merge pull request #146 from matthew-brett/add-rsync-back

BF: add back rsync, somehow removed from manylinux

See: pypa/manylinux#160
parents 126d9a92 34b988aa
......@@ -125,6 +125,12 @@ function untar {
esac
}
function install_rsync {
if [ -z "$IS_OSX" ]; then
[[ $(type -P rsync) ]] || yum install -y rsync
fi
}
function fetch_unpack {
# Fetch input archive name from input URL
# Parameters
......@@ -146,6 +152,7 @@ function fetch_unpack {
fi
# Unpack archive, refreshing contents
rm_mkdir arch_tmp
install_rsync
(cd arch_tmp && untar ../$out_archive && rsync --delete -avh * ..)
}
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment