(self)
| 129 | MESSAGE = "Commit version to new branch." |
| 130 | |
| 131 | def RunStep(self): |
| 132 | self["commit_title"] = "Version %s" % self["version"] |
| 133 | text = "%s" % (self["commit_title"]) |
| 134 | TextToFile(text, self.Config("COMMITMSG_FILE")) |
| 135 | |
| 136 | self.GitCommit(file_name=self.Config("COMMITMSG_FILE")) |
| 137 | |
| 138 | |
| 139 | class LandBranch(Step): |
nothing calls this directly
no test coverage detected