aboutsummaryrefslogtreecommitdiff
path: root/bin/updatedirs
diff options
context:
space:
mode:
Diffstat (limited to 'bin/updatedirs')
-rwxr-xr-xbin/updatedirs21
1 files changed, 10 insertions, 11 deletions
diff --git a/bin/updatedirs b/bin/updatedirs
index cde7a6b..b304251 100755
--- a/bin/updatedirs
+++ b/bin/updatedirs
@@ -2,10 +2,10 @@
import os
ROOT = "/home/nolln/u"
-SRCS = ["src", "sys"]
-BUILD = ".build"
-TEST = ".test"
-IGNORED = ["build", "include", "lib", "bin", ".git", "vendor", "obj", "dep", ".generated"]
+SRC = "src"
+BUILD = "obj"
+TEST = "test"
+IGNORED = ["include", "lib", "bin", ".git", "vendor", "obj", ".dep"]
if __name__ == "__main__":
if not os.path.exists(BUILD):
@@ -14,10 +14,9 @@ if __name__ == "__main__":
if not os.path.exists(TEST):
os.mkdir(TEST)
- for SRC in SRCS:
- for root, dirs, _ in os.walk(f"{ROOT}/{SRC}"):
- dirs[:] = [d for d in dirs if d not in IGNORED]
- for newroot in [BUILD, TEST]:
- blddir = f"{ROOT}/{newroot}/{SRC}/{root[len(ROOT)+len(SRC)+2:]}"
- if not os.path.exists(blddir):
- os.mkdir(blddir)
+ for root, dirs, _ in os.walk(f"{ROOT}/{SRC}"):
+ dirs[:] = [d for d in dirs if d not in IGNORED]
+ for newroot in [BUILD, TEST]:
+ blddir = f"{ROOT}/{newroot}/{root[len(ROOT)+len(SRC)+2:]}"
+ if not os.path.exists(blddir):
+ os.mkdir(blddir)