blob: 8b3128c01120759d9c3e4827886a9391f0105162 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
#! /usr/bin/python3
from os import system
# Copyright 2026, Amlal El Mahrouss and Ne.org contributors.
# The Ne Syste, is licensed under the BSL-1.0 or Apache 2.0.
if __name__ == '__main__':
print("precommit: running format.sh...")
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("git add src/kernel src/nectar src/build src/boot")
system("git commit -s -S")
|