diff options
author | Islam Sharabash <islam.sharabash@gmail.com> | 2014-03-01 09:14:36 -0800 |
---|---|---|
committer | aph <a.hewson@gmail.com> | 2014-03-01 22:12:13 +0000 |
commit | f124ebadde0194420af75b61457c2c238ea818b4 (patch) | |
tree | e2ca23b351547d553158465b7742fb01c33aaac7 /scripts/common.sh | |
parent | 29ae98d1863494199f027b7c5f9189d553ee9212 (diff) | |
download | rneovim-f124ebadde0194420af75b61457c2c238ea818b4.tar.gz rneovim-f124ebadde0194420af75b61457c2c238ea818b4.tar.bz2 rneovim-f124ebadde0194420af75b61457c2c238ea818b4.zip |
Adding darwin platform to common.sh build script
Diffstat (limited to 'scripts/common.sh')
-rw-r--r-- | scripts/common.sh | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/scripts/common.sh b/scripts/common.sh index 9efa3d5e6c..5196d594a3 100644 --- a/scripts/common.sh +++ b/scripts/common.sh @@ -4,11 +4,15 @@ if [ "$unameval" = 'Linux' ]; then platform='linux' elif [ "$unameval" = 'FreeBSD' ]; then platform='freebsd' +elif [ "$unameval" = 'Darwin' ]; then + platform='darwin' fi sha1sumcmd='sha1sum' if [ "$platform" = 'freebsd' ]; then sha1sumcmd='shasum' +elif [ "$platform" = 'darwin' ]; then + sha1sumcmd='shasum' fi pkgroot="$(pwd)" |