fixed attach script
This commit is contained in:
+1
-1
Submodule TeaSpeak updated: 58d3e758b5...cee9040f92
+9
-1
@@ -1,3 +1,11 @@
|
||||
#!/bin/bash
|
||||
|
||||
git submodule foreach -q --recursive 'echo "Updating $name"; git checkout $(git config -f $toplevel/.gitmodules submodule.$name.branch || echo master); git pull origin $(git config -f $toplevel/.gitmodules submodule.$name.branch || echo master)'
|
||||
git submodule foreach -q --recursive '
|
||||
echo "Updating $name";
|
||||
BRANCH=$(git config -f $toplevel/.gitmodules submodule.$name.branch || echo master)
|
||||
if [ -z ${BRANCH} ]; then
|
||||
BRANCH="master"
|
||||
fi
|
||||
git checkout ${BRANCH};
|
||||
echo "git pull origin ${BRANCH}"
|
||||
git pull origin ${BRANCH}'
|
||||
|
||||
+1
-1
Submodule libraries/DataPipes updated: 43c9764863...f8b8024caa
+1
-1
Submodule libraries/boringssl updated: e7b78770ec...a3202d7bc1
+1
-1
Submodule libraries/breakpad updated: 948ce04ed7...7b98edabb6
+1
-1
Submodule libraries/event updated: c3a6fe75e1...ee12c516cf
+1
-1
Submodule libraries/protobuf updated: 3d62db3ecd...c9a30c2c27
+1
-1
Submodule libraries/tomcrypt updated: 0f7fd3c606...2c202ee7c5
+1
-1
Submodule libraries/yaml-cpp updated: 1698b47b65...c90c08ccc9
Reference in New Issue
Block a user