Update Dotbot version

This commit is contained in:
Anish Athalye 2014-08-20 17:19:09 -04:00
parent fbf0ca02c7
commit 2a4a41261c
2 changed files with 6 additions and 4 deletions

2
dotbot

@ -1 +1 @@
Subproject commit 72008324653e90adfeb29a91b46ab33b34fd4af7
Subproject commit 09a80230f55c6913e86ab38ad20fd8836c42a56d

View File

@ -1,4 +1,6 @@
#!/bin/bash
#!/usr/bin/env bash
set -eu
CONFIG="install.conf.json"
DOTBOT_DIR="dotbot"
@ -7,6 +9,6 @@ DOTBOT_BIN="bin/dotbot"
BASEDIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
cd "${BASEDIR}"
git submodule update --init --recursive ${DOTBOT_DIR}
git submodule update --init --recursive "${DOTBOT_DIR}"
"${BASEDIR}/${DOTBOT_DIR}/${DOTBOT_BIN}" -d "${BASEDIR}" -c "${CONFIG}" $@
"${BASEDIR}/${DOTBOT_DIR}/${DOTBOT_BIN}" -d "${BASEDIR}" -c "${CONFIG}" "${@}"