Add example install script
This commit is contained in:
parent
60a560e976
commit
4da9a85b30
1 changed files with 12 additions and 0 deletions
12
tools/git-submodule/install
Executable file
12
tools/git-submodule/install
Executable file
|
@ -0,0 +1,12 @@
|
|||
#!/bin/bash
|
||||
|
||||
CONFIG="install.conf.json"
|
||||
DOTBOT_DIR="dotbot"
|
||||
|
||||
DOTBOT_BIN="bin/dotbot"
|
||||
BASEDIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
|
||||
|
||||
cd "${BASEDIR}"
|
||||
git submodule update --init --recursive ${DOTBOT_DIR}
|
||||
|
||||
"${BASEDIR}/${DOTBOT_DIR}/${DOTBOT_BIN}" -d "${BASEDIR}" -c "${CONFIG}" $@
|
Loading…
Reference in a new issue