From 8344d3f7b28539c5d750f198316dcac344f755b5 Mon Sep 17 00:00:00 2001 From: Jacob Janzen Date: Sun, 11 Aug 2024 12:31:06 -0500 Subject: fix quiet grep on install --- install | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/install b/install index db0c194..51ad486 100755 --- a/install +++ b/install @@ -20,7 +20,7 @@ CWD=$(pwd) if [ "$(uname)" = 'Darwin' ]; then echo 'detected Mac OS; installing Mac OS configuration...' cd ~/.dotfiles/macos/ || exit -elif [ "$(uname)" = 'Linux' ] && grep 'ID=gentoo' /etc/os-release; then +elif [ "$(uname)" = 'Linux' ] && grep -q 'ID=gentoo' /etc/os-release; then echo 'detected Gentoo; installing Gentoo configuration...' cd ~/.dotfiles/gentoo/ || exit else -- cgit v1.2.3