mirror of
https://github.com/coder/code-server.git
synced 2024-12-05 07:13:06 +08: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 "$@"
|