Compare commits

..

2 commits

Author SHA1 Message Date
c92923f6b9 [skip-ci] fix 2023-12-22 15:58:20 +01:00
2aec5b44d2 fix:: ignore missing image/test folder 2023-12-22 15:46:11 +01:00

View file

@ -53,8 +53,8 @@ class ImageBuildService:
self.file_api.cp_recursive("image", build_path) self.file_api.cp_recursive("image", build_path)
try: try:
self.file_api.cp_recursive("test", build_path) self.file_api.cp_recursive("test", build_path)
except FileNotFoundError as err: except:
print("File not found", err) print("Folder 'test' not found")
def image(self, devops: Devops): def image(self, devops: Devops):
image = devops.specialized_builds[BuildType.IMAGE] image = devops.specialized_builds[BuildType.IMAGE]