diff options
author | Enno Boland <g@s01.de> | 2014-08-13 20:17:10 +0000 |
---|---|---|
committer | Enno Boland <g@s01.de> | 2014-08-13 20:17:10 +0000 |
commit | 179c07cc302d4631ca569e484973b6c4f7dd65a0 (patch) | |
tree | 418f0938a365ae48cf02c4cde793103768b66739 /common/hooks/pre-pkg | |
parent | 33db760577b30a040b5beb0f447ffa207435de7e (diff) | |
download | void-packages-179c07cc302d4631ca569e484973b6c4f7dd65a0.tar void-packages-179c07cc302d4631ca569e484973b6c4f7dd65a0.tar.gz void-packages-179c07cc302d4631ca569e484973b6c4f7dd65a0.tar.bz2 void-packages-179c07cc302d4631ca569e484973b6c4f7dd65a0.tar.lz void-packages-179c07cc302d4631ca569e484973b6c4f7dd65a0.tar.xz void-packages-179c07cc302d4631ca569e484973b6c4f7dd65a0.tar.zst void-packages-179c07cc302d4631ca569e484973b6c4f7dd65a0.zip |
common/hooks: use cp instead of ln
Diffstat (limited to 'common/hooks/pre-pkg')
-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 } |