Skip to content

Commit 9fb661d

Browse files
committed
Use patience algorithm for diffs
This should prevent us from generating different diffs and adding noise to our PRs. Patience seems like a good one; it generated a diff that I felt was easier to read in the case of the yarn.lock optionator section.
1 parent f8b782b commit 9fb661d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ci/dev/diff-vscode.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ main() {
66

77
cd ./lib/vscode
88
git add -A
9-
git diff HEAD --full-index > ../../ci/dev/vscode.patch
9+
git diff HEAD --patience --full-index > ../../ci/dev/vscode.patch
1010
}
1111

1212
main "$@"

0 commit comments

Comments
 (0)