1 #!/usr/bin/env sh
   2 
   3 if [ ! -d "INSTALL_LOCATION" ]
   4 then
   5     mkdir -p "INSTALL_LOCATION"
   6 fi
   7 
   8 exit 0