Skip to content
Snippets Groups Projects
Unverified Commit b64c7c3c authored by Lars Bilke's avatar Lars Bilke
Browse files

Check vtus for equality.

parent 1a1e3162
No related branches found
No related tags found
No related merge requests found
......@@ -17,8 +17,8 @@ RemoteData = DataFactory("core.remote")
@calcfunction
def create_hash_script(remote_folder):
return SinglefileData.from_string(
f"cd {remote_folder.get_remote_path()}/results/plot\n"
'find . -name "*.png" -type f -exec sha1sum {} \;'
f"cd {remote_folder.get_remote_path()}/results\n"
'find . \\( -name "*.vtu" -o -name "*.png" \\) -type f -exec sha1sum {} \\;'
)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment