4a250be79a
This should eliminate potential noise in the diffs for the patch since different versions seem to default to different hash lengths.
13 lines
179 B
Bash
Executable File
13 lines
179 B
Bash
Executable File
#!/usr/bin/env bash
|
|
set -euo pipefail
|
|
|
|
main() {
|
|
cd "$(dirname "$0")/../.."
|
|
|
|
cd ./lib/vscode
|
|
git add -A
|
|
git diff HEAD --full-index > ../../ci/dev/vscode.patch
|
|
}
|
|
|
|
main "$@"
|