diff --git a/sretoolbox/container/skopeo.py b/sretoolbox/container/skopeo.py index f1a510d..1d835bb 100644 --- a/sretoolbox/container/skopeo.py +++ b/sretoolbox/container/skopeo.py @@ -62,7 +62,7 @@ def copy( Skopeo is running on. :type copy_all: bool """ - self._run_skopeo( + return self._run_skopeo( "copy", str(src_image), str(dst_image), @@ -86,7 +86,7 @@ def inspect(self, image, creds=None): "username:password". :type creds: str """ - self._run_skopeo("inspect", str(image), creds=creds) + return self._run_skopeo("inspect", str(image), creds=creds) def _run_skopeo( self, subcomand, *args, src_creds=None, dest_creds=None, creds=None, all_=False