We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 61c03f0 commit 410b1c7Copy full SHA for 410b1c7
ctfcli/core/challenge.py
@@ -736,7 +736,7 @@ def sync(self, ignore: Tuple[str] = ()) -> None:
736
) as lf:
737
local_file_sha1sum = hash_file(lf)
738
739
- if local_file_sha1sum == remote_file_sha1sum:
+ if not "checksum" in ignore and local_file_sha1sum == remote_file_sha1sum:
740
continue
741
742
# if sha1sums are not present, or the hashes are different, re-upload the file
0 commit comments