mirror of
https://git.tuxpa.in/a/code-server.git
synced 2024-12-27 12:45:25 +00:00
9fb661d91e
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.
13 lines
190 B
Bash
Executable File
13 lines
190 B
Bash
Executable File
#!/usr/bin/env bash
|
|
set -euo pipefail
|
|
|
|
main() {
|
|
cd "$(dirname "$0")/../.."
|
|
|
|
cd ./lib/vscode
|
|
git add -A
|
|
git diff HEAD --patience --full-index > ../../ci/dev/vscode.patch
|
|
}
|
|
|
|
main "$@"
|