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.
This commit is contained in:
Asher 2020-12-15 11:14:56 -06:00
parent f8b782bd68
commit 9fb661d91e
No known key found for this signature in database
GPG Key ID: D63C1EF81242354A
1 changed files with 1 additions and 1 deletions

View File

@ -6,7 +6,7 @@ main() {
cd ./lib/vscode
git add -A
git diff HEAD --full-index > ../../ci/dev/vscode.patch
git diff HEAD --patience --full-index > ../../ci/dev/vscode.patch
}
main "$@"