Commit 361dfa80 authored by Dominik Charousset's avatar Dominik Charousset

Merge pull request #375 from firegurafiku/develop

obs-commit-version.sh: separate version with '.' instead of '_'
parents d1d4ea7f 749af29b
...@@ -82,7 +82,7 @@ if [ "$1" = "--release" ] ; then ...@@ -82,7 +82,7 @@ if [ "$1" = "--release" ] ; then
elif [ "$1" = "--nightly" ] ; then elif [ "$1" = "--nightly" ] ; then
projectName="$confNightlyProject" projectName="$confNightlyProject"
packageName="$confNightlyPackage" packageName="$confNightlyPackage"
packageVersion="${versionAsStr}_$(date +%Y%m%d)" packageVersion="${versionAsStr}.$(date +%Y%m%d)"
else else
# Don't prevent other branches from building, but issue a warning. # Don't prevent other branches from building, but issue a warning.
echo "Use with either '--nightly' or '--release'. Exitting." >&2 echo "Use with either '--nightly' or '--release'. Exitting." >&2
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment