From 49b1ee8fc11fc3aa93b39146fdff0a33ef27a74b Mon Sep 17 00:00:00 2001 From: Nicholas Noll Date: Sun, 19 Apr 2020 09:41:41 -0700 Subject: chore: added script to update build directory --- bin/update_dirs.py | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100755 bin/update_dirs.py (limited to 'bin') 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) -- cgit v1.2.1