Initial commit

This commit is contained in:
Anish Athalye 2014-03-20 22:06:18 -04:00
commit e85c08ef4f
4 changed files with 24 additions and 0 deletions

3
.gitmodules vendored Normal file
View File

@ -0,0 +1,3 @@
[submodule "dotbot"]
path = dotbot
url = https://github.com/anishathalye/dotbot

1
dotbot Submodule

@ -0,0 +1 @@
Subproject commit a8edc8ee2bc2178507d52d345b709cc3392dfa64

12
install Executable file
View 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}" $@

8
install.conf.json Normal file
View File

@ -0,0 +1,8 @@
[
{
"link": {}
},
{
"shell": []
}
]