style: log aws s3 path when uploaded instead of local path

This commit is contained in:
Victor Westerlund 2026-01-01 13:33:39 +01:00
parent 310fa9b66a
commit 5bccecedcd
Signed by: vlw
GPG key ID: D0AD730E1057DFC6

View file

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