summaryrefslogtreecommitdiff
path: root/x.py
blob: 7973730ef177cd600aaf4baebe1b40a81ed1b085 (plain)
1
2
3
4
5
6
7
8
9
10
11
#!/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()