live: incorrect reference to image checksum file in logs

checksum file name end by .img.full.sum, not .full.sum
master
OpenGnSys Support Team 2024-05-25 09:57:17 +02:00
parent fa5b37b2a6
commit 9952c3cc85
1 changed files with 1 additions and 1 deletions

View File

@ -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)