File tree Expand file tree Collapse file tree 2 files changed +21
-7
lines changed
dbux-projects/src/projects/express Expand file tree Collapse file tree 2 files changed +21
-7
lines changed Original file line number Diff line number Diff line change @@ -170,7 +170,7 @@ export default class ExpressProject extends Project {
170
170
bugLocations : [
171
171
{
172
172
fileName : 'lib/router/layer.js' ,
173
- line : 112
173
+ line : 122
174
174
}
175
175
]
176
176
} ,
@@ -180,12 +180,12 @@ export default class ExpressProject extends Project {
180
180
// label: 'param override (loki)',
181
181
// testRe: 'should support altering req.params across routes',
182
182
// testFilePaths: ['test/app.param.js'],
183
- // bugLocations: [
184
- // {
185
- // fileName: 'lib/.js',
186
- // line:
187
- // }
188
- // ]
183
+ // // bugLocations: [
184
+ // // {
185
+ // // fileName: 'lib/.js',
186
+ // // line:
187
+ // / / }
188
+ // // ]
189
189
// },
190
190
{
191
191
id : 14 ,
Original file line number Diff line number Diff line change
1
+ set -e # cancel on error
2
+ # set -x # verbose echo mode
3
+
4
+ thisDirRelative=$( dirname " $0 " )
5
+ rootDir=$( node -e " console.log(require('path').resolve('$thisDirRelative /..'))" ) # get absolute path using node
6
+
7
+ cd " $rootDir /dbux_projects/express"
8
+
9
+ max=27
10
+ for i in ` seq 1 $max `
11
+ do
12
+ delta=$( git diff --stat Bug-$i -fix Bug-$i -fix^1 | head -n 1)
13
+ echo " $i $delta "
14
+ done
You can’t perform that action at this time.
0 commit comments