We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e8bc19c commit 105d9f8Copy full SHA for 105d9f8
1 file changed
ddiff.py
@@ -163,12 +163,12 @@ def pull_images(tags):
163
# print_debug("Done.")
164
165
def diff_image(base_tag, target_tag):
166
+ push_images([base_tag, target_tag])
167
+
168
base_tag = _prepare_tag(base_tag)
169
target_tag = _prepare_tag(target_tag)
170
target_repo = target_tag.split(":")[0]
171
- push_images([base_tag, target_tag])
-
172
user_dir = os.getcwd()
173
output_dir = os.path.join(user_dir, ".ddiff-image")
174
shutil.rmtree(output_dir, ignore_errors=True)
0 commit comments