Skip to content

Commit a052d58

Browse files
committed
more work on express bugs
1 parent 2d12126 commit a052d58

File tree

2 files changed

+21
-7
lines changed

2 files changed

+21
-7
lines changed

dbux-projects/src/projects/express/Project.js

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -170,7 +170,7 @@ export default class ExpressProject extends Project {
170170
bugLocations: [
171171
{
172172
fileName: 'lib/router/layer.js',
173-
line: 112
173+
line: 122
174174
}
175175
]
176176
},
@@ -180,12 +180,12 @@ export default class ExpressProject extends Project {
180180
// label: 'param override (loki)',
181181
// testRe: 'should support altering req.params across routes',
182182
// 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+
// // ]
189189
// },
190190
{
191191
id: 14,

scripts/bug-diffs.sh

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
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

0 commit comments

Comments
 (0)