You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

123456789101112131415161718192021
  1. #!/bin/sh
  2. # Check that the repository is properly set up
  3. if [ ! -x "./lol/bootstrap" ]; then
  4. cat << EOF
  5. Error: cannot execute lol/bootstrap
  6. Did you configure the Lol Engine submodule? The following may help:
  7. git submodule update --init --recursive
  8. EOF
  9. exit 1
  10. fi
  11. # Bootstrap this project first, using the Lol Engine script
  12. ./lol/bootstrap
  13. # Then bootstrap Lol Engine itself
  14. (cd lol && ./bootstrap)