Updated script

This commit is contained in:
WolverinDEV 2019-07-17 19:53:08 +02:00
parent bb382ab243
commit 3a3fe482b7

View File

@ -1,8 +1,10 @@
#!/bin/bash #!/bin/bash
#General modules should be set to their versions #General modules should be set to their versions
git reset --hard
git submodule foreach -q --recursive 'git reset --hard'
git submodule update --init --recursive --force git submodule update --init --recursive --force
git submodule update --init --remote --recursive --force TeaSpeak #git submodule update --init --remote --recursive --force TeaSpeak
#The libs have no need to be attach to the master :) #The libs have no need to be attach to the master :)
cd TeaSpeak cd TeaSpeak
@ -15,4 +17,4 @@ if [ -z ${BRANCH} ]; then
fi fi
git checkout ${BRANCH}; git checkout ${BRANCH};
echo "git pull origin ${BRANCH}" echo "git pull origin ${BRANCH}"
git pull origin ${BRANCH}' git pull origin ${BRANCH}'