11 lines
277 B
Bash
Executable file
11 lines
277 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
set -e
|
|
|
|
BASEDIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
|
|
|
|
cd "${BASEDIR}"
|
|
#git submodule update --recursive --remote
|
|
#git submodule foreach git fetch && git submodule foreach git reset --hard origin/master
|
|
git submodule update --recursive --remote
|
|
|