Fix renaming on exact tags

This commit is contained in:
BtbN 2022-01-14 23:50:28 +01:00
parent c4b62f47f3
commit bf95872731

View file

@ -39,7 +39,12 @@ while [[ $# -gt 0 ]]; do
TAGNAME="$(sed -re 's/([0-9]+\.[0-9]+).*/\1/' <<<"$TAGNAME")"
fi
ONAME="ffmpeg-$TAGNAME-latest-$(cut -d- -f5- <<<"$INAME")"
if [[ $INAME == *-*-*-*-*-* ]]; then
ONAME="ffmpeg-$TAGNAME-latest-$(cut -d- -f5- <<<"$INAME")"
else
ONAME="ffmpeg-$TAGNAME-latest-$(cut -d- -f3- <<<"$INAME")"
fi
mv "$INAME" "$ONAME"
if [[ $INPUT == *.zip ]]; then