C#/Java: Rename the directories containing the model generator and tests.

This commit is contained in:
Michael Nebel
2022-12-20 13:55:29 +01:00
parent 178fd0e9e1
commit 787b4743ee
61 changed files with 0 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
#!/usr/bin/python3
import sys
import os.path
import subprocess
# Add Model as Data script directory to sys.path.
gitroot = subprocess.check_output(["git", "rev-parse", "--show-toplevel"]).decode("utf-8").strip()
madpath = os.path.join(gitroot, "misc/scripts/models-as-data/")
sys.path.append(madpath)
import generate_flow_model as model
language = "java"
model.Generator.make(language).run()