mirror of
https://gitlab.com/dslackw/slpkg.git
synced 2024-12-25 09:58:41 +01:00
Updated to json format
Signed-off-by: Dimitris Zlatanidis <d.zlatanidis@gmail.com>
This commit is contained in:
parent
c3f384f9af
commit
cd0bbe764b
2 changed files with 2 additions and 8 deletions
|
@ -4,11 +4,12 @@
|
|||
|
||||
- Updated:
|
||||
* Updated message for invalid package version
|
||||
* Updated upgrade.log file to json format
|
||||
|
||||
### 5.0.9 - 23/05/2024
|
||||
|
||||
- Added:
|
||||
* Inform message for invalid package version with the upgrade commandy
|
||||
* Inform message for invalid package version with the upgrade command
|
||||
* Config to delete sources after build or install packages
|
||||
|
||||
### 5.0.8 - 10/05/2024
|
||||
|
|
|
@ -147,15 +147,8 @@ class Upgrade(Configs): # pylint: disable=[R0902]
|
|||
'package': self.data[name]['package'],
|
||||
'error': str(err)
|
||||
}
|
||||
|
||||
self.upgrade_log_file.write_text(json.dumps(log, indent=4), encoding='utf-8')
|
||||
|
||||
# with self.upgrade_log_file.open('a', encoding='utf-8') as log:
|
||||
# log.write(f"Installed: {installed}, "
|
||||
# f"Repository: {self.data[name]['package']}, "
|
||||
# f"Error: {err}, "
|
||||
# f"Repo: {self.repository}\n")
|
||||
|
||||
def check_packages(self) -> None:
|
||||
"""Check only which packages are upgradeable."""
|
||||
self.check_run: bool = True
|
||||
|
|
Loading…
Reference in a new issue