8 lines
244 B
Bash
Executable file
8 lines
244 B
Bash
Executable file
#!/usr/bin/env bash
|
|
set -e
|
|
BASEDIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
|
|
|
|
cd "${BASEDIR}"
|
|
git submodule update --init --recursive "${DOTBOT_DIR}"
|
|
|
|
"${BASEDIR}/lib/dotbot/bin/dotbot" -d "${BASEDIR}" -c config/dotbot/dotbot.yaml "${@}"
|