From e921cf88f978cedb471e4df2d51697009a321eb9 Mon Sep 17 00:00:00 2001 From: ebbit1q Date: Thu, 6 Dec 2018 01:34:56 +0100 Subject: [PATCH] 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. --- .ci/travis-compile.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.ci/travis-compile.sh b/.ci/travis-compile.sh index a3553f5f..443e54bd 100644 --- a/.ci/travis-compile.sh +++ b/.ci/travis-compile.sh @@ -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