Update Dotbot version

Switch to YAML as the default config file format.
这个提交包含在:
Anish Athalye 2014-10-27 20:43:24 -04:00
父节点 0c35956504
当前提交 17977aec93
共有 5 个文件被更改,包括 6 次插入14 次删除

查看文件

@ -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

查看文件

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

查看文件

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

3
install.conf.yaml 普通文件
查看文件

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