File tree 1 file changed +3
-2
lines changed 1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ The following is a set of steps one needs to make to do a release:
9
9
10
10
[source,sh]
11
11
---
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.
13
13
# Adjust the V to reflect a correct version
14
14
V="2.1.0a1"
15
15
# 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"
18
18
# Commit command
19
19
COMMIT="git commit"
20
20
# 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
22
22
pushd js; git checkout $B; git pull; git reset; popd
23
23
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.
24
25
# Run the version update script
25
26
pushd ruby; bundle exec rake version[$V]; popd
26
27
# Add the new version to the submodules, commit it and tag it
You can’t perform that action at this time.
0 commit comments