I've added a README to my dotfile folder and since I'm managing each package with stow
I'd like to ignore that. From documentation I've read that by default stow uses a preset list which includes README files. Now, this doesn't seem to work. I've also tried adding a .stow-global-ignore
but same error. Even forcing with stow -nv --ignore='README.md' *
leads to nothing.
$ tree
.
├── i3
├── i3status
├── nvim
├── README.md
├── rofi
├── stow
├── urxvt
└── zsh
$ stow -nv *
LINK: .config/i3/config => ../../.dotfiles/i3/.config/i3/config
LINK: .config/i3status/config => ../../.dotfiles/i3status/.config/i3status/config
LINK: .config/nvim/init.vim => ../../.dotfiles/nvim/.config/nvim/init.vim
stow: ERROR: The stow directory .dotfiles does not contain package README.md
My guess is that ignore list applies only to packages (hence dirs) inside the stow directory? Any workaround for this?