de112b15ed
Now that we've moved to the submodule, there is no need to reset changes in there :) cc @jsjoeio
16 lines
177 B
Bash
Executable File
16 lines
177 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 "$@"
|