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
rodzic 0c35956504
commit 17977aec93
5 zmienionych plików z 6 dodań i 14 usunięć

Wyświetl plik

@ -10,7 +10,7 @@ In general, you should be using symbolic links for everything, and using git
submodules whenever possible.
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
`git submodule update --init --remote`.

2
dotbot

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

Wyświetl plik

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

Wyświetl plik

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

3
install.conf.yaml Normal file
Wyświetl plik

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