Move comment, add check for OpenBSD

This commit is contained in:
maddiebaka 2023-09-01 04:10:10 -04:00
parent 1688885a6f
commit 3db6222162
1 changed files with 4 additions and 1 deletions

View File

@ -109,7 +109,6 @@ alias gitc="git commit"
alias rc2014="minicom -D /dev/tty.usbmodem09681"
export LC_CTYPE="en_US.UTF-8"
# Homebrew / MacOS Library Path
uname=$(uname -s)
case $uname in
@ -118,10 +117,14 @@ case $uname in
;;
Darwin)
export OS="darwin"
# Homebrew / MacOS Library Path
export LIBRARY_PATH="$LIBRARY_PATH:$(brew --prefix)/lib"
# Ruby dev
eval "$(rbenv init - zsh)"
;;
OpenBSD)
export OS="openbsd"
;;
*)
echo "Can't detect operating system from shell."
;;