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

raise SystemExit(BuildApidocsCommand().main())