aboutsummaryrefslogtreecommitdiff
path: root/install
diff options
context:
space:
mode:
authorJacob Janzen <jjanzenn@proton.me>2024-08-11 12:31:06 -0500
committerJacob Janzen <jjanzenn@proton.me>2024-08-11 12:31:06 -0500
commit8344d3f7b28539c5d750f198316dcac344f755b5 (patch)
treeee1469711ff2403bd94ecfddc44582aad29e8cc9 /install
parent8a7f1d91ed81ad00c37ff08961a4b1c53be6b555 (diff)
fix quiet grep on install
Diffstat (limited to 'install')
-rwxr-xr-xinstall2
1 files changed, 1 insertions, 1 deletions
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