fix:: ignore missing image/test folder

This commit is contained in:
Mirco 2023-12-22 15:46:11 +01:00
parent 52622b1f2d
commit 2aec5b44d2

View file

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