1
0
Fork 0

Do not cache neovim-related packages for now

This commit is contained in:
Daniel Kempkens 2022-08-14 14:27:36 +02:00
parent 374c265e79
commit 289444ca8e

View file

@ -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