setup_env.sh 184 B

123456789101112
  1. #!/bin/bash -e
  2. function initDefault {
  3. git submodule init
  4. git submodule update
  5. }
  6. echo "Creating development environment setup..."
  7. initDefault
  8. echo "...setup complete."
  9. exit