Make dump-swagger work from all directories
This commit is contained in:
parent
6b8ee850c0
commit
99b8a066c8
1 changed files with 4 additions and 1 deletions
|
@ -12,7 +12,10 @@ import re
|
||||||
import shutil
|
import shutil
|
||||||
import sys
|
import sys
|
||||||
|
|
||||||
sys.path.insert(0, os.path.join(os.path.dirname(os.path.dirname(os.path.abspath(__file__))), "templating"))
|
templating_dir = os.path.join(os.path.dirname(os.path.dirname(os.path.abspath(__file__))), "templating")
|
||||||
|
sys.path.insert(0, templating_dir)
|
||||||
|
os.chdir(templating_dir)
|
||||||
|
|
||||||
from matrix_templates.units import resolve_references, MatrixUnits
|
from matrix_templates.units import resolve_references, MatrixUnits
|
||||||
|
|
||||||
if len(sys.argv) < 2 or len(sys.argv) > 3:
|
if len(sys.argv) < 2 or len(sys.argv) > 3:
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue