common/hooks: use cp instead of ln

This commit is contained in:
Enno Boland 2014-08-13 22:17:10 +02:00
parent 33db760577
commit 179c07cc30
1 changed files with 1 additions and 1 deletions

View File

@ -5,6 +5,6 @@ hook() {
# create links to preserve old versions of repodata
find $XBPS_REPOSITORY -name '*-repodata' | while read; do
ln "${REPLY}" "${REPLY}.genVcdiff"
cp "${REPLY}" "${REPLY}.genVcdiff"
done
}