Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7a36d49 commit c5f1ca3Copy full SHA for c5f1ca3
compare-master-to-stable.js
@@ -145,7 +145,7 @@ then(allInSeries(function (branch) {
145
line = line.split(' ');
146
var sha = line.shift();
147
var msg = line.join(' ');
148
- return sha + (msg.toLowerCase().indexOf('fix') === -1 ? ' ' : ' * ') + msg;
+ return sha + ((/fix\([^\)]+\):/i.test(msg)) ? ' * ' : ' ') + msg;
149
});
150
branch.log = log.map(function (line) {
151
return line.substr(41);
0 commit comments