1
0
mirror of https://github.com/nix-community/home-manager synced 2024-06-02 21:13:33 +02:00

zplug: Reduce noise (#1441)

Running `zplug install` will always product output, even if there is
nothing to do.

Gating it behind a `zplug check` eliminates that output when there is
nothing to do, and is recommended in the zplug README.
This commit is contained in:
Paho Lurie-Gregg 2020-09-06 02:16:34 -07:00 committed by GitHub
parent f146620897
commit 1a6d6b8ace
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 9 additions and 4 deletions

View File

@ -49,7 +49,10 @@ in {
'') cfg.plugins)}
''}
if ! zplug check; then
zplug install
fi
zplug load
'';

View File

@ -38,8 +38,10 @@ with lib;
assertFileContains home-files/.zshrc \
'zplug "lib/clipboard", from:oh-my-zsh, if:"[[ $OSTYPE == *darwin* ]]"'
assertFileRegex home-files/.zshrc \
'^zplug install$'
assertFileContains home-files/.zshrc \
'if ! zplug check; then
zplug install
fi'
assertFileRegex home-files/.zshrc \
'^zplug load$'