diff --git a/README.md b/README.md index 5860cc1..a142fc9 100644 --- a/README.md +++ b/README.md @@ -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`. diff --git a/dotbot b/dotbot index afebc0b..33d602b 160000 --- a/dotbot +++ b/dotbot @@ -1 +1 @@ -Subproject commit afebc0bb2fe817778f77d0fcfe30e508bf15d441 +Subproject commit 33d602bb9304b2daf54a5754f5fb51cfcad350dc diff --git a/install b/install index ba63987..b1baa33 100755 --- a/install +++ b/install @@ -2,7 +2,7 @@ set -e -CONFIG="install.conf.json" +CONFIG="install.conf.yaml" DOTBOT_DIR="dotbot" DOTBOT_BIN="bin/dotbot" diff --git a/install.conf.json b/install.conf.json deleted file mode 100644 index 1e41b6f..0000000 --- a/install.conf.json +++ /dev/null @@ -1,11 +0,0 @@ -[ - { - "clean": [] - }, - { - "link": {} - }, - { - "shell": [] - } -] diff --git a/install.conf.yaml b/install.conf.yaml new file mode 100644 index 0000000..5ec980f --- /dev/null +++ b/install.conf.yaml @@ -0,0 +1,3 @@ +- clean: [] +- link: {} +- shell: []