Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions sretoolbox/container/skopeo.py
Original file line number Diff line number Diff line change
Expand Up @@ -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),
Expand All @@ -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
Expand Down