mirror of
https://github.com/coder/code-server.git
synced 2024-12-05 07:13:06 +08:00
12 lines
153 B
Bash
12 lines
153 B
Bash
|
#!/usr/bin/env bash
|
||
|
set -euo pipefail
|
||
|
|
||
|
main() {
|
||
|
cd "$(dirname "$0")/../.."
|
||
|
|
||
|
cd ./lib/vscode
|
||
|
git diff HEAD > ../../ci/dev/vscode.patch
|
||
|
}
|
||
|
|
||
|
main "$@"
|