Aloxaf / fzf-tab

Replace zsh's default completion selection menu with fzf!

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

[BUG] source directory name confliction on case-insensitive filessytem such as APFS for macos

Vonfry opened this issue · comments

Describe the bug

A clear and concise description of what the bug is.

modules/src and modules/Src are different folders on case-sensitive filesystem such as ext4, btrfs and so on.

But on case-insensitive filesystem, such as APFS for macos, the one of them will be missing. This causes that configure and build process fail.

In my case, even though I use linux, I keep dotfiles within Dropbox which does not allow for case collisions within synced folder so currently I can not checkout master without issues...

Something is still broken.. I've just pulled master and tried to run build-fzf-tab-module

The result:

./configure: line 15290: ./Src/Modules/fzftab.mdd: No such file or directory

which is true as:

$ tree modules
modules
└── Src
    ├── aloxaf
    ├── fzftab.c
    └── fzftab.mdd

@doubleloop Did your restart zsh after pulling master?