Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.
 
 
 
 
 

22 lignes
412 B

  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)