mirror of
https://github.com/nix-community/home-manager.git
synced 2026-01-12 01:59:37 +08:00
nixgl: use -q to silence grep
Co-authored-by: V. <150687949+vigress8@users.noreply.github.com>
This commit is contained in:
committed by
Robert Helgesson
parent
b9fe747915
commit
199cf5634c
@@ -63,7 +63,7 @@ in {
|
||||
|
||||
# If .desktop files refer to the old package, replace the references
|
||||
for dsk in "$out/share/applications"/*.desktop ; do
|
||||
if ! grep "${pkg.out}" "$dsk" > /dev/null; then
|
||||
if ! grep -q "${pkg.out}" "$dsk"; then
|
||||
continue
|
||||
fi
|
||||
src="$(readlink "$dsk")"
|
||||
|
||||
Reference in New Issue
Block a user