Compare commits

...

3 Commits

Author SHA1 Message Date
SantaSpeen f2d529b052 [+] how to add 2025-03-24 02:05:27 +03:00
SantaSpeen 153f320b0c [+] modes 2025-03-24 02:05:13 +03:00
SantaSpeen a82172395d [+] modes 2025-03-24 02:03:33 +03:00
3 changed files with 20 additions and 2 deletions
+6 -1
View File
@@ -1,3 +1,8 @@
# DistScripts
Скрипт для сборки и создания патча обнвления
Скрипт для сборки и создания патча обновления
* Добавление в проект
```shell
git submodule add ssh://git@git.anidev.ru:222/AnidevSoft/DistScripts.git DistScripts
```
+2
View File
@@ -1 +1,3 @@
from .build_packet import build
from .patchers import patch_core_build
from .patchers import patch_metadata
+12 -1
View File
@@ -1,4 +1,15 @@
import sys
from dist_scripts import build
from dist_scripts import patchers
mode = "build"
args = sys.argv
if len(args) > 1:
mode = args[1]
if __name__ == '__main__':
build()
if mode == "build":
build()
elif mode == "core":
patchers.patch_core_build()