diff options
-rwxr-xr-x | javascript/build.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/javascript/build.py b/javascript/build.py index 2b754e9..08436fd 100755 --- a/javascript/build.py +++ b/javascript/build.py @@ -24,6 +24,8 @@ source_files = glob.glob("src/*.cpp") pre_js, = glob.glob("javascript/*pre.js") post_js, = glob.glob("javascript/*post.js") +if not os.path.exists("build"): + os.mkdir("build") functions = set() RE_FUNCTION=re.compile("(axolotl_[^( ]*)\\(") |