blob: 54a4b621ce654e0032b33a33a171ab6727be70df (
plain)
1
2
3
4
5
6
7
8
9
10
|
#!/usr/bin/env python
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())
|