diff options
| author | Amlal El Mahrouss <amlal@nekernel.org> | 2026-03-14 08:06:30 +0100 |
|---|---|---|
| committer | Amlal El Mahrouss <amlal@nekernel.org> | 2026-03-14 08:06:30 +0100 |
| commit | 1eb441d2f2755034997a7102d41305a27ee9c7aa (patch) | |
| tree | f9f41cb1f953df12951c00ffab51c1c210891710 /updater | |
| parent | 518b7eeabd96159bfb28e838f83f81885ea56ce6 (diff) | |
[FEAT] src/kernel features for BootZ, X11 and GPUBasic driver in WiP.
Signed-off-by: Amlal El Mahrouss <amlal@nekernel.org>
Diffstat (limited to 'updater')
| -rwxr-xr-x | updater/updater.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/updater/updater.py b/updater/updater.py index 0f6f855..f6a19e4 100755 --- a/updater/updater.py +++ b/updater/updater.py @@ -6,10 +6,10 @@ from os import system class UpdateFunctor: def __init__(self): - system("cd libs && cd kernel && git pull && cd ..") - system("cd libs && cd nectar && git pull && cd ..") - system("cd libs && cd build && git pull && cd ..") - system("cd libs && cd boot && git pull && cd ..") + system("cd src && cd kernel && git pull && cd ..") + system("cd src && cd nectar && git pull && cd ..") + system("cd src && cd build && git pull && cd ..") + system("cd src && cd boot && git pull && cd ..") system("cd papers && git pull") system("git add src/kernel src/nectar papers src/build src/boot") system("git commit -s -S") |
