anishathalye / dotbot

A tool that bootstraps your dotfiles ⚡️

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

[Errno 2] No such file or directory: 'install.conf.yaml'

mfoulds opened this issue · comments

I just installed dotbot as per this tutorial and receive the following error when running install:

~/.dotfiles$ ./install
Could not read config file:
  [Errno 2] No such file or directory: 'install.conf.yaml'

folder contents are:

.dotfiles/
┣ dotbot/
┣ .bashrc
┣ .condarc
┣ .gitmodules
┣ README.md
┣ install
┗ install.config.yaml

install.config.yaml contents:

- defaults:
    link:
      relink: true

- clean: ['~']

- link:
    ~/.bashrc: bashrc
    ~/.condarc: condarc

- shell:
  - [git submodule update --init --recursive, Installing submodules]

Any ideas?

Rename your install.config.yaml to install.conf.yaml (or change the ./install script to use the alternative name)

Rename your install.config.yaml to install.conf.yaml (or change the ./install script to use the alternative name)

Oops.

Thanks @anishathalye