Created
December 4, 2018 19:33
-
-
Save arobb/a8354082f5407f4fba0e20b292e84c36 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# | |
# Determine which OS we are in | |
# | |
platform='unknown' | |
unamestr=$(uname) | |
case $unamestr in | |
Darwin) | |
platform='mac' | |
;; | |
*) | |
platform='linux' | |
;; | |
esac |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment