Skip to content

Commit 0e869bc

Browse files
committed
Small corrections to the Maintainers document
1 parent e7b3102 commit 0e869bc

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

docs/Maintainers.adoc

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ The following is a set of steps one needs to make to do a release:
99

1010
[source,sh]
1111
---
12-
# We assume this is executed in the main Interscript root directory.
12+
# We assume this is executed in the main Interscript repository root directory.
1313
# Adjust the V to reflect a correct version
1414
V="2.1.0a1"
1515
# Adjust the B to reflect a correct branch name. For now, master. In the future we may decide on
@@ -18,9 +18,10 @@ B="master"
1818
# Commit command
1919
COMMIT="git commit"
2020
# Ensure we are on the latest repository version and all subrepos are up to date as well.
21-
git checkout master; git pull; git reset
21+
git checkout $B; git pull; git reset
2222
pushd js; git checkout $B; git pull; git reset; popd
2323
pushd maps; git checkout $B; git pull; git reset; popd
24+
# This is the point when you may want to run tests and ensure everything is correct.
2425
# Run the version update script
2526
pushd ruby; bundle exec rake version[$V]; popd
2627
# Add the new version to the submodules, commit it and tag it

0 commit comments

Comments
 (0)