25개 이상의 토픽을 선택하실 수 없습니다. Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

22 lines
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)