cbuild 237 B

1234567891011121314
  1. #!/usr/bin/env python3
  2. import os
  3. import sys
  4. # divert pycache early
  5. if sys.pycache_prefix is None:
  6. cbp = os.path.dirname(os.path.realpath(__file__))
  7. sys.pycache_prefix = f"{cbp}/__pycache__"
  8. from src import early
  9. early.fire()