mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 15:01:51 +00:00
12 lines
270 B
Python
Executable File
12 lines
270 B
Python
Executable File
#!/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()
|