Skip to content

Instantly share code, notes, and snippets.

@JrGoodle
Last active August 29, 2015 14:14
Show Gist options
  • Save JrGoodle/1fef9f4ba1075aa8b053 to your computer and use it in GitHub Desktop.
Save JrGoodle/1fef9f4ba1075aa8b053 to your computer and use it in GitHub Desktop.
Bash Platform check
case "$(uname)" in
Linux) export MY_PLATFORM="linux";
;;
Darwin) export MY_PLATFORM="osx";
[[ -e "/usr/local/bin/brew" ]] && export PATH=/usr/local/bin:$PATH #Homebrew
;;
CYGWIN*) export MY_PLATFORM="windows";
;;
esac
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment