Skip to content
This repository was archived by the owner on Oct 12, 2025. It is now read-only.

Commit f2c2941

Browse files
author
Mike Turner
authored
Update cli.py
1 parent 0b67387 commit f2c2941

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

epiccli/cli.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -287,11 +287,11 @@ def upload(ctx, source, destination):
287287
print("Upload failed, %s" % e)
288288

289289

290-
def sync_callback(source_path, target_path, uploaded):
290+
def sync_callback(source_path, target_path, uploaded, dryrun):
291291
if uploaded:
292-
click.echo(f"Copied {source_path} to {target_path}")
292+
click.echo(f"Copied {source_path} to {target_path} (dryrun={dryrun})")
293293
else:
294-
click.echo(f"Did not copy {source_path} to {target_path}")
294+
click.echo(f"Did not copy {source_path} to {target_path} (dryrun={dryrun})")
295295

296296

297297
@data.command()

0 commit comments

Comments
 (0)