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.
 
 
 
 
 
 

18 line
232 B

  1. verbose = True
  2. force_rebuild = False
  3. no_minify = False
  4. def run():
  5. """
  6. Run the builder
  7. """
  8. global verbose
  9. import sys, os
  10. from build.project import Project
  11. verbose = True
  12. Project().build()
  13. if __name__=='__main__':
  14. run()