1
0
mirror of https://git.tuxpa.in/a/code-server.git synced 2025-01-11 18:38:46 +00:00
code-server-2/ci/build/clean.sh
2021-07-26 15:46:13 -04:00

16 lines
183 B
Bash
Executable File

#!/usr/bin/env bash
set -euo pipefail
main() {
cd "$(dirname "${0}")/../.."
source ./ci/lib.sh
git clean -Xffd
# pushd lib/vscode
# git clean -xffd
# popd
}
main "$@"