Update Dotbot version

Switch to YAML as the default config file format.
This commit is contained in:
Anish Athalye 2014-10-27 20:43:24 -04:00
parent 0c35956504
commit 17977aec93
5 changed files with 6 additions and 14 deletions

View File

@ -10,7 +10,7 @@ In general, you should be using symbolic links for everything, and using git
submodules whenever possible. submodules whenever possible.
To keep submodules at their proper versions, you could include something like To keep submodules at their proper versions, you could include something like
`git submodule update --init --recursive` in your `install.conf.json`. `git submodule update --init --recursive` in your `install.conf.yaml`.
To upgrade your submodules to their latest versions, you could periodically run To upgrade your submodules to their latest versions, you could periodically run
`git submodule update --init --remote`. `git submodule update --init --remote`.

2
dotbot

@ -1 +1 @@
Subproject commit afebc0bb2fe817778f77d0fcfe30e508bf15d441 Subproject commit 33d602bb9304b2daf54a5754f5fb51cfcad350dc

View File

@ -2,7 +2,7 @@
set -e set -e
CONFIG="install.conf.json" CONFIG="install.conf.yaml"
DOTBOT_DIR="dotbot" DOTBOT_DIR="dotbot"
DOTBOT_BIN="bin/dotbot" DOTBOT_BIN="bin/dotbot"

View File

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

3
install.conf.yaml Normal file
View File

@ -0,0 +1,3 @@
- clean: []
- link: {}
- shell: []