diff --git a/fetch.sh b/fetch.sh index 7c72893b8..3efd59258 100755 --- a/fetch.sh +++ b/fetch.sh @@ -32,7 +32,7 @@ do then if [[ $BIN_VERSION == $TARGET_VERSION ]] then - cp -vf ./*.deb ./output/ + mv -vf ./*.deb ./output/ else for i in ./*.deb do @@ -40,7 +40,7 @@ do dpkg-deb -R $i $i-tmp sed -i "s#$BIN_VERSION#$TARGET_VERSION#g" $i-tmp/DEBIAN/control dpkg-deb -b $i-tmp $i-fixed.deb - cp -vf ./*-fixed.deb ./output/ + mv -vf ./*-fixed.deb ./output/ done fi else