summaryrefslogtreecommitdiff
path: root/bin/build
blob: 3b95e94fb2ec4ab4e93fdfabff218b16bb533d1e (plain)
1
2
3
4
5
6
7
8
9
10
#!/usr/bin/env python2
import os
import sys

# Add the current branch to the python path
sys.path.append(os.path.join(os.path.dirname(__file__), '..'))

from jarmonbuild.commands import main

raise SystemExit(main())