From 348d1f81f83f444141d4c9b6010dca0a06395129 Mon Sep 17 00:00:00 2001 From: "Ward Nakchbandi (CosmicFusion)" Date: Wed, 7 Aug 2024 22:32:29 +0200 Subject: [PATCH] Update fetch.sh --- fetch.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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