Do not cache neovim-related packages for now
This commit is contained in:
parent
374c265e79
commit
289444ca8e
1 changed files with 12 additions and 0 deletions
|
@ -36,6 +36,18 @@ in
|
|||
continue
|
||||
fi
|
||||
|
||||
# Ignore Neovim-related packages for now, because they will be recreated after every nightly update.
|
||||
# Might work better once nix is CA.
|
||||
if [[ $storePath == *"-vim-pack-dir" ]] ||
|
||||
[[ $storePath == *"-vimplugin-"* ]] ||
|
||||
[[ $storePath == *"-neovim-unwrapped-master" ]] ||
|
||||
[[ $storePath == *"-vim-command-check-hook" ]] ||
|
||||
[[ $storePath == *"-neovim-require-check-hook" ]] ||
|
||||
[[ $storePath == *"-neovim-master-fish-completions" ]]; then
|
||||
echo "Skipping: $storePath"
|
||||
continue
|
||||
fi
|
||||
|
||||
if [ "$1" = "--list" ]; then
|
||||
echo "$storePath"
|
||||
else
|
||||
|
|
Loading…
Reference in a new issue