diff options
author | cyBerta <cyberta@riseup.net> | 2021-01-31 21:51:29 +0100 |
---|---|---|
committer | cyBerta <cyberta@riseup.net> | 2021-01-31 22:57:02 +0100 |
commit | 0b5193f3bd84df957337e703445a6dadd30e4f55 (patch) | |
tree | 4603932d103cd5564a3ddb8b4a848249e4664dd9 /scripts/cleanProject.sh | |
parent | f425762e35957e663eeda3e5bea73a1f93ab90dd (diff) |
move more scripts to scripts folder, adapt gitlab ci and prepare_for_distribution script
Diffstat (limited to 'scripts/cleanProject.sh')
-rwxr-xr-x | scripts/cleanProject.sh | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/scripts/cleanProject.sh b/scripts/cleanProject.sh new file mode 100755 index 00000000..703788cc --- /dev/null +++ b/scripts/cleanProject.sh @@ -0,0 +1,12 @@ +#!/bin/bash + +git checkout -- \* +git checkout -- \.\* + +rm -r ./ics-openvpn +rm -r ./build +rm -r ./app/build +rm -r ./go/lib/* +rm -r ./currentReleases +git submodule sync --recursive +git submodule update --init --recursive |