summaryrefslogtreecommitdiffhomepage
path: root/tools
diff options
context:
space:
mode:
authorAmlal El Mahrouss <amlal@nekernel.org>2026-03-09 04:47:32 +0100
committerAmlal El Mahrouss <amlal@nekernel.org>2026-03-09 04:47:32 +0100
commitfe98fb3903138e7afec5f85b66fbb42f18440bfc (patch)
tree6f53964cc0181f4472db1c68bf5be0089f893ce4 /tools
parent553ff94b56e8e347b130b01ff226f65136cfb55d (diff)
[CHORE] Rename tools to updater.
Signed-off-by: Amlal El Mahrouss <amlal@nekernel.org>
Diffstat (limited to 'tools')
-rw-r--r--tools/__init__.py7
-rwxr-xr-xtools/updater.py22
2 files changed, 0 insertions, 29 deletions
diff --git a/tools/__init__.py b/tools/__init__.py
deleted file mode 100644
index eeef556..0000000
--- a/tools/__init__.py
+++ /dev/null
@@ -1,7 +0,0 @@
-import updater
-
-if __name__ == '__main__':
- updater.start()
-
-
-
diff --git a/tools/updater.py b/tools/updater.py
deleted file mode 100755
index afb32f5..0000000
--- a/tools/updater.py
+++ /dev/null
@@ -1,22 +0,0 @@
-# Copyright 2026, Amlal El Mahrouss and Ne.org contributors.
-# Open C++ Libraries is licensed under BSL-1.0
-
-from os import system
-
-class UpdateFunctor:
- def __init__(self):
- system("cd libs && cd tproc && git pull && cd ..")
- system("cd libs && cd fix && git pull && cd ..")
- system("cd libs && cd core && git pull && cd ..")
- system("git add libs/core libs/fix libs/tproc")
- system("git commit -s -S")
-
-
-
-def start():
- functor = UpdateFunctor()
- print("INFO: Updater: Functor called")
-
-
-
-