blob: 000026ddf72a5c320862fce79049af6c52465322 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#!/bin/bash
git checkout -- \*
git checkout -- \.\*
rm -r ./ics-openvpn
rm -r ./build
rm -r ./app/build
rm -r ./go/lib/*
git submodule sync --recursive
git submodule update --init --recursive
|