common/hooks: use cp instead of ln
This commit is contained in:
parent
33db760577
commit
179c07cc30
|
@ -5,6 +5,6 @@ hook() {
|
||||||
|
|
||||||
# create links to preserve old versions of repodata
|
# create links to preserve old versions of repodata
|
||||||
find $XBPS_REPOSITORY -name '*-repodata' | while read; do
|
find $XBPS_REPOSITORY -name '*-repodata' | while read; do
|
||||||
ln "${REPLY}" "${REPLY}.genVcdiff"
|
cp "${REPLY}" "${REPLY}.genVcdiff"
|
||||||
done
|
done
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue