diff options
author | OpenGnSys Support Team <soporte-og@soleta.eu> | 2024-05-25 09:57:17 +0200 |
---|---|---|
committer | OpenGnSys Support Team <soporte-og@soleta.eu> | 2024-05-25 09:57:17 +0200 |
commit | 9952c3cc85e8e1b281337d914af3fc5cb269ab17 (patch) | |
tree | b98b6f5a6e26ad1ed5add0bcc25a1d582a9d7d10 | |
parent | fa5b37b2a6c2f10d0f380f0da07f23e9288e70f8 (diff) |
live: incorrect reference to image checksum file in logs
checksum file name end by .img.full.sum, not .full.sum
-rw-r--r-- | src/live/ogOperations.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/live/ogOperations.py b/src/live/ogOperations.py index c52699e..158ee64 100644 --- a/src/live/ogOperations.py +++ b/src/live/ogOperations.py @@ -179,7 +179,7 @@ class OgLiveOperations: if (not os.path.exists(image_path)): raise OgError(f'could not find {image_path} in cache') if (not tip_check_csum(repo, name)): - raise OgError(f'checksum file {name}.full.sum is missing in repository {repo}') + raise OgError(f'checksum file {name}.img.full.sum is missing in repository {repo}') self._restore_image(image_path, devpath) |