diff options
author | Adam Hovorka <[email protected]> | 2020-08-04 17:40:45 -0600 |
---|---|---|
committer | Adam Hovorka <[email protected]> | 2020-08-04 17:40:45 -0600 |
commit | e077f85a1f2a5ef4503027dc645e1f9c669df5ab (patch) | |
tree | 33cf44b8062b0453445c8c7369483ac3d0d7eced /install | |
parent | fdadc13a58ba2912ffaff4c486056fdfcc1e6373 (diff) |
[chore] Update Dotbot
Diffstat (limited to 'install')
-rwxr-xr-x | install | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -10,10 +10,11 @@ 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}" for conf in ${DEFAULT_CONFIG_PREFIX} ${@}; do - "${BASEDIR}/${DOTBOT_DIR}/${DOTBOT_BIN}" -d "${BASEDIR}" -c "${conf}${CONFIG_SUFFIX}" + "${BASEDIR}/${DOTBOT_DIR}/${DOTBOT_BIN}" -d "${BASEDIR}" -c "${conf}${CONFIG_SUFFIX}" done echo ${@} > .dot.args |