mirror of
https://github.com/coder/code-server.git
synced 2025-07-24 01:48:22 +08:00
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 "$@"
|