style: log S3 destination path when archive is uploaded instead of local path (#4)

Reviewed-on: https://codeberg.org/vlw/3rd/pulls/4
This commit is contained in:
Victor Westerlund 2026-01-01 13:35:49 +01:00
parent f317c41a67
commit cd1c8c4e91

View file

@ -26,6 +26,7 @@ class Aws():
self.__stdout.log(f"Starting upload of archive for: {self.archive.item.abspath_target}")
self.__stdout.debug(f"Archive object: {self.archive}")
self.__stdout.info(f"Uploading to: {self.archive.item.abspath_destination}")
args = [
"aws",
@ -53,4 +54,4 @@ class Aws():
cmd.cleanup()
self.archive.cleanup()
self.__stdout.ok(f"Archive uploaded: {self.archive.item.abspath_target}")
self.__stdout.ok(f"Archive uploaded to: {self.archive.item.abspath_destination}")