We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f86ade6 commit 7e18cf6Copy full SHA for 7e18cf6
1 file changed
src/util/git.ts
@@ -149,7 +149,12 @@ export const getDiffAgainstMaster = async (
149
validateFiles(changedFilesString, lessonOrder, challengeOrder.toString())
150
151
const [display, db] = await Promise.all([
152
- git.diff([`--color`, `master..${current}`, ...ignoreFileOptions]),
+ git.diff([
153
+ `--color`,
154
+ `master..${current}`,
155
+ '--diff-filter=d',
156
+ ...ignoreFileOptions,
157
+ ]),
158
git.diff([`master..${current}`, '--diff-filter=d', ...ignoreFileOptions]),
159
])
160
0 commit comments