Archived
1
0

feat: add vscode:clean script

This commit is contained in:
Joe Previte
2020-12-15 12:40:44 -07:00
parent 9fb661d91e
commit faeed81d43
2 changed files with 13 additions and 0 deletions

12
ci/dev/reset-vscode.sh Executable file
View File

@ -0,0 +1,12 @@
#!/usr/bin/env bash
set -euo pipefail
main() {
cd "$(dirname "$0")/../.."
cd ./lib/vscode
git add -A
git reset --hard
}
main "$@"