blob: 15e10761507d8c63659ad76595353624bda9f2ce (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
|
#!/bin/bash
if [[ ! -d .git ]]; then
echo "This script can only be run from a top level git directory. Exiting..."
exit 1
fi
echo "Preparing $PWD for development use"
if [[ $1 == "" ]]; then
read -p "Enter your TDE GIT username []: " -e gituser
fi
if [[ $gituser == "" ]]; then
gituser="anonymous"
fi
THISSCRIPT=$(readlink -f $0)
echo "$THISSCRIPT"
exit 1
if [[ ! -e "$THISSCRIPT" ]]; then
echo "Unable to find myself! Exiting..."
exit 1
fi
git reset --hard HEAD
git clean -dxf
if [[ -e .gitmodules ]]; then
if [[ $1 == "anonymous" ]]; then
sed -i 's/system@//g' .gitmodules
else
sed -i "s/system@/$1@/g" .gitmodules
fi
git submodule init
git submodule update
git submodule foreach "'git checkout master && git pull && $THISSCRIPT $1'"
git checkout -- .gitmodules
fi
|