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