aboutsummaryrefslogtreecommitdiff
path: root/javascript
diff options
context:
space:
mode:
Diffstat (limited to 'javascript')
-rwxr-xr-xjavascript/build.py2
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_[^( ]*)\\(")