jmakeig / mltap

A JavaScript test harness for MarkLogic that (roughly) implements the Node.js tape API
Apache License 2.0
0 stars 0 forks source link

Detect ML_HOME environment variable #69

Closed jmakeig closed 7 years ago

jmakeig commented 7 years ago

http://stackoverflow.com/a/18434831/563324

OS="`uname`"
case $OS in
  'Linux')
    OS='Linux'
    alias ls='ls --color=auto'
    ;;
  'FreeBSD')
    OS='FreeBSD'
    alias ls='ls -G'
    ;;
  'WindowsNT')
    OS='Windows'
    ;;
  'Darwin') 
    OS='Mac'
    ;;
  'SunOS')
    OS='Solaris'
    ;;
  'AIX') ;;
  *) ;;
esac
jmakeig commented 7 years ago

Fixed by #70