forked from ungleich-public/cdist
For release generate version file with target version.
This commit is contained in:
parent
804570d874
commit
c456284cef
2 changed files with 12 additions and 2 deletions
|
@ -245,7 +245,7 @@ eof
|
||||||
"$0" pep8
|
"$0" pep8
|
||||||
|
|
||||||
# Generate version file to be included in packaging
|
# Generate version file to be included in packaging
|
||||||
"$0" version
|
"$0" target-version
|
||||||
|
|
||||||
# Ensure the git status is clean, else abort
|
# Ensure the git status is clean, else abort
|
||||||
if ! git diff-index --name-only --exit-code HEAD ; then
|
if ! git diff-index --name-only --exit-code HEAD ; then
|
||||||
|
@ -382,6 +382,11 @@ eof
|
||||||
echo "VERSION = \"$(git describe)\"" > cdist/version.py
|
echo "VERSION = \"$(git describe)\"" > cdist/version.py
|
||||||
;;
|
;;
|
||||||
|
|
||||||
|
target-version)
|
||||||
|
target_version=$($0 changelog-version)
|
||||||
|
echo "VERSION = \"${target_version}\"" > cdist/version.py
|
||||||
|
;;
|
||||||
|
|
||||||
*)
|
*)
|
||||||
echo "Unknown helper target $@ - aborting"
|
echo "Unknown helper target $@ - aborting"
|
||||||
exit 1
|
exit 1
|
||||||
|
|
|
@ -280,7 +280,7 @@ eof
|
||||||
"$0" pep8
|
"$0" pep8
|
||||||
|
|
||||||
# Generate version file to be included in packaging
|
# Generate version file to be included in packaging
|
||||||
"$0" version
|
"$0" target-version
|
||||||
|
|
||||||
# Ensure the git status is clean, else abort
|
# Ensure the git status is clean, else abort
|
||||||
if ! git diff-index --name-only --exit-code HEAD ; then
|
if ! git diff-index --name-only --exit-code HEAD ; then
|
||||||
|
@ -444,6 +444,11 @@ eof
|
||||||
echo "VERSION = \"$(git describe)\"" > cdist/version.py
|
echo "VERSION = \"$(git describe)\"" > cdist/version.py
|
||||||
;;
|
;;
|
||||||
|
|
||||||
|
target-version)
|
||||||
|
target_version=$($0 changelog-version)
|
||||||
|
echo "VERSION = \"${target_version}\"" > cdist/version.py
|
||||||
|
;;
|
||||||
|
|
||||||
*)
|
*)
|
||||||
echo "Unknown helper target $@ - aborting"
|
echo "Unknown helper target $@ - aborting"
|
||||||
exit 1
|
exit 1
|
||||||
|
|
Loading…
Reference in a new issue