summaryrefslogtreecommitdiff
path: root/bin/build-apidocs
blob: 37a6bd2baf3514e499a1cb3693566273c58f6ad1 (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 BuildApidocsCommand

raise SystemExit(BuildApidocsCommand().main())