Remove zip extension in target

This commit is contained in:
framp 2020-05-23 11:40:53 +02:00
parent c1c8a0b4a2
commit 198e6c944f
No known key found for this signature in database
GPG Key ID: D855C81E6393D841
1 changed files with 8 additions and 4 deletions

View File

@ -160,15 +160,19 @@ done
#Copy to new file if requested
if [ -n "$2" ]; then
info "Copying $1 to $2..."
cp --reflink=auto --sparse=always "$1" "$2"
f="$2"
if [[ -n $ziptool && "${f##*.}" == ${ZIPEXTENSIONS[$ziptool]} ]]; then # remove zip extension if zip requested because zip tool will complain about extension
f="${f%.*}"
fi
info "Copying $1 to $f..."
cp --reflink=auto --sparse=always "$1" "$f"
if (( $? != 0 )); then
error $LINENO "Could not copy file..."
exit -5
fi
old_owner=$(stat -c %u:%g "$1")
chown "$old_owner" "$2"
img="$2"
chown "$old_owner" "$f"
img="$f"
fi
# cleanup at script exit