From 13059144d2f65ee80ed9df8d4198b29d0f26c757 Mon Sep 17 00:00:00 2001 From: Chris van Run Date: Tue, 30 Jul 2024 10:04:22 +0200 Subject: [PATCH] Remove debug print statement printenv --- .../example-algorithm{{cookiecutter._}}/save.sh.j2 | 2 -- 1 file changed, 2 deletions(-) diff --git a/grand_challenge_forge/partials/example-algorithm/example-algorithm{{cookiecutter._}}/save.sh.j2 b/grand_challenge_forge/partials/example-algorithm/example-algorithm{{cookiecutter._}}/save.sh.j2 index 906d758..b1ad3e2 100755 --- a/grand_challenge_forge/partials/example-algorithm/example-algorithm{{cookiecutter._}}/save.sh.j2 +++ b/grand_challenge_forge/partials/example-algorithm/example-algorithm{{cookiecutter._}}/save.sh.j2 @@ -27,8 +27,6 @@ formatted_build_info=$(date -d "$build_timestamp" +"%Y%m%d_%H%M%S") # Set the output filename with timestamp and build information output_filename="${SCRIPT_DIR}/${container_tag}_${formatted_build_info}.tar.gz" -printenv - # Save the Docker container and gzip it docker save "$container_tag" | gzip -c > "$output_filename"