dev-release.txt: Use $version shell variable in invocation of version.py
Change I9e9db2d28 introduced a $version shell variable to reduce
copy and pasting when making the release.
Move the first usage of this variable up to where the version.py is
invoked to set the version in pom files.
Change-Id: I66ebd02dabab64a23f73958e99aaf5a2b4642a49
diff --git a/Documentation/dev-release.txt b/Documentation/dev-release.txt
index f90390a..53ded48 100644
--- a/Documentation/dev-release.txt
+++ b/Documentation/dev-release.txt
@@ -85,13 +85,13 @@
version as parameter, e.g.:
----
- ./tools/version.py 2.5
+ version=2.15
+ ./tools/version.py $version
----
Commit the changes and create a signed release tag on the new commit:
----
- version=2.15
git tag -s -m "v$version" "v$version"
----