diff options
author | Jacob Janzen <jjanzenn@proton.me> | 2024-08-11 12:31:06 -0500 |
---|---|---|
committer | Jacob Janzen <jjanzenn@proton.me> | 2024-08-11 12:31:06 -0500 |
commit | 8344d3f7b28539c5d750f198316dcac344f755b5 (patch) | |
tree | ee1469711ff2403bd94ecfddc44582aad29e8cc9 /install | |
parent | 8a7f1d91ed81ad00c37ff08961a4b1c53be6b555 (diff) |
fix quiet grep on install
Diffstat (limited to 'install')
-rwxr-xr-x | install | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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 |