mirror of
https://github.com/coder/code-server.git
synced 2024-11-23 20:52:38 +03:00
f885b29675
- Use yarn for vscode vendoring. - Grab hash from package.
12 lines
132 B
Bash
Executable File
12 lines
132 B
Bash
Executable File
#!/usr/bin/env bash
|
|
set -euo pipefail
|
|
|
|
main() {
|
|
cd "$(dirname "${0}")/../.."
|
|
source ./ci/lib.sh
|
|
|
|
git clean -Xffd
|
|
}
|
|
|
|
main "$@"
|