6 lines
133 B
Bash
Executable File
6 lines
133 B
Bash
Executable File
#!/bin/sh
|
|
BINDIR=`dirname \`realpath "${0}"\``
|
|
REPODIR=`realpath ${BINDIR}/..`
|
|
cd "${REPODIR}"
|
|
git submodule update --remote --merge
|