Move comment, add check for OpenBSD

This commit is contained in:
maddiebaka 2023-09-01 04:10:10 -04:00
parent 1688885a6f
commit 3db6222162

View File

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