diff options
author | Alan Pearce | 2013-06-01 14:36:15 +0100 |
---|---|---|
committer | Alan Pearce | 2013-06-01 14:36:15 +0100 |
commit | 10353603cc72f37034b86071f9c495d866dafeaf (patch) | |
tree | 8d37b54357140338141cb8a1610bed7f5ce6c92d /install | |
parent | e328a3a136377f0ccf5d56ee5ddfbc259f999f92 (diff) | |
download | nixfiles-10353603cc72f37034b86071f9c495d866dafeaf.tar.lz nixfiles-10353603cc72f37034b86071f9c495d866dafeaf.tar.zst nixfiles-10353603cc72f37034b86071f9c495d866dafeaf.zip |
Installer: Fix FreeBSD detection
Diffstat (limited to 'install')
-rwxr-xr-x | install | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/install b/install index fef5b4e9..8d6ae180 100755 --- a/install +++ b/install @@ -63,7 +63,7 @@ zfiles=( if [[ -e /usr/bin/emerge ]]; then zfiles+=zsh/zshrc_gentoo fi -if [[ $OSTYPE == freebsd ]]; then +if [[ $OSTYPE == freebsd* ]]; then zfiles+=zsh/zshrc_freebsd fi |