Join GitHub today
GitHub is home to over 50 million developers working together to host and review code, manage projects, and build software together.
Sign up| #!/usr/bin/env python | |
| # This file is only a "symlink" to bootstrap.py, all logic should go there. | |
| import os | |
| import sys | |
| rust_dir = os.path.dirname(os.path.abspath(__file__)) | |
| sys.path.append(os.path.join(rust_dir, "src", "bootstrap")) | |
| import bootstrap | |
| bootstrap.main() |

