File tree Expand file tree Collapse file tree 1 file changed +5
-1
lines changed Expand file tree Collapse file tree 1 file changed +5
-1
lines changed Original file line number Diff line number Diff line change 1
- #! /bin/bash -ex
1
+ #! /bin/bash -e
2
2
3
3
DEVTOOLS_REMOTE=$( git remote -v | grep " flutter/devtools.git" | grep " (fetch)" | tail -n1 | cut -w -f1)
4
4
TYPE=$1
@@ -30,13 +30,17 @@ NEXT_BRANCH="next_version_$(date +%s)"
30
30
git checkout -b $CLEAN_BRANCH ;
31
31
COMMIT_MESSAGE=$( dart tool/update_version.dart auto -d -t release)
32
32
dart tool/update_version.dart auto -t release
33
+ dart tool/bin/repo_tool.dart generate-changelog
33
34
git commit -am " $COMMIT_MESSAGE "
34
35
35
36
git checkout -b $NEXT_BRANCH ;
36
37
COMMIT_MESSAGE=$( dart tool/update_version.dart auto -d -t $TYPE )
37
38
dart tool/update_version.dart auto -t $TYPE
38
39
git commit -am " $COMMIT_MESSAGE "
39
40
41
+
42
+ git checkout $CLEAN_BRANCH
43
+
40
44
echo " RELEASE HELPER FINISHED"
41
45
echo " Clean Branch: $CLEAN_BRANCH "
42
46
echo " Next Branch: $NEXT_BRANCH "
You can’t perform that action at this time.
0 commit comments