diff options
-rw-r--r-- | common/hooks/pre-pkg/01-xdelta_repolist.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/common/hooks/pre-pkg/01-xdelta_repolist.sh b/common/hooks/pre-pkg/01-xdelta_repolist.sh index c4cb0d5b518..b12d076ef70 100644 --- a/common/hooks/pre-pkg/01-xdelta_repolist.sh +++ b/common/hooks/pre-pkg/01-xdelta_repolist.sh @@ -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 } |