aboutsummaryrefslogtreecommitdiff
path: root/bin
diff options
context:
space:
mode:
Diffstat (limited to 'bin')
-rwxr-xr-xbin/update_dirs.py14
1 files changed, 14 insertions, 0 deletions
diff --git a/bin/update_dirs.py b/bin/update_dirs.py
new file mode 100755
index 0000000..0f0e0f2
--- /dev/null
+++ b/bin/update_dirs.py
@@ -0,0 +1,14 @@
+#!/bin/python
+
+import os
+
+ROOT = "sys"
+BUILD = "build"
+IGNORED = ["build", "include", "lib", "bin", ".git", "vendor", "obj", "dep"]
+
+if __name__ == "__main__":
+ for root, dirs, _ in os.walk(ROOT):
+ dirs[:] = [d for d in dirs if d not in IGNORED]
+ blddir = f"{BUILD}/{root[len(ROOT)+1:]}"
+ if not os.path.exists(blddir):
+ os.mkdir(blddir)