place the os nametag after the version (#3465)
When i added the appended os nametags I didn't account for the dots inside the version, this will place the nametag before the last dot instead of after the first dot.
This commit is contained in:
parent
952f13dec4
commit
e921cf88f9
1 changed files with 1 additions and 1 deletions
|
@ -137,6 +137,6 @@ if [[ $MAKE_PACKAGE ]]; then
|
|||
echo "could not find package" >&2
|
||||
exit 1
|
||||
fi
|
||||
mv "$path/$file" "$path/${file%%.*}-$PACKAGE_NAME.${file#*.}"
|
||||
mv "$path/$file" "$path/${file%.*}-$PACKAGE_NAME.${file##*.}"
|
||||
fi
|
||||
fi
|
||||
|
|
Loading…
Reference in a new issue