mirror of https://git.tuxpa.in/a/code-server.git
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:
parent
f8b782bd68
commit
9fb661d91e
|
@ -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 "$@"
|
||||
|
|
Loading…
Reference in New Issue