e72e3b47a0
Before this patch, the `git submodule sync` line would always print to stdout.
15 lines
368 B
Bash
Executable file
15 lines
368 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
set -e
|
|
|
|
CONFIG="install.conf.yaml"
|
|
DOTBOT_DIR="dotbot"
|
|
|
|
DOTBOT_BIN="bin/dotbot"
|
|
BASEDIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
|
|
|
|
cd "${BASEDIR}"
|
|
git -C "${DOTBOT_DIR}" submodule sync --quiet --recursive
|
|
git submodule update --init --recursive "${DOTBOT_DIR}"
|
|
|
|
"${BASEDIR}/${DOTBOT_DIR}/${DOTBOT_BIN}" -d "${BASEDIR}" -c "${CONFIG}" "${@}"
|