Adding 'make update' to update from git repository. remove previous installation.py file, the update of packages is done via install.py file.

This commit is contained in:
adator
2025-10-28 23:33:43 +01:00
parent 99f8949681
commit e5a5f01603
8 changed files with 173 additions and 395 deletions

View File

@@ -53,3 +53,10 @@ ifeq ($(OS), Linux)
fi
@export echo $DBUS_SESSION_BUS_ADDRESS && systemctl --user daemon-reload && echo "Systemd Daemon reloaded!"
endif
update:
ifeq ($(OS), Linux)
$(info Starting update from the main repository...)
@. .pyenv/bin/activate && python core/install.py --git-update
$(info Update done!)
endif