# HG changeset patch # User ecology # Date 1742482184 0 # Node ID 231179dea9dd744ae58f71dbac4c48e929515ed3 # Parent 77787acbd79305a63f86ace9218f6a84672eed1b planemo upload for repository https://github.com/galaxyecology/tools-ecology/tree/master/tools/ocean commit ecc01d1975d2a603ece634c6cfe2d9591b307cc8 diff -r 77787acbd793 -r 231179dea9dd check.py --- a/check.py Tue Oct 22 15:55:01 2024 +0000 +++ b/check.py Thu Mar 20 14:49:44 2025 +0000 @@ -76,6 +76,10 @@ print(error_message) sys.exit(1) + # Append '--force-download' option to the command + if "--force-download" not in command: + command += " --force-download" + # Execute the command try: subprocess.run(command, shell=True, check=True)