Skip to content

Commit fc351e7

Browse files
committed
Print image input file in CI only
1 parent 98aa362 commit fc351e7

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

src/ci/docker/run.sh

+4-2
Original file line numberDiff line numberDiff line change
@@ -84,8 +84,10 @@ if [ -f "$docker_dir/$image/Dockerfile" ]; then
8484
context="$script_dir"
8585
fi
8686
echo "::group::Building docker image for $image"
87-
echo "Image input"
88-
cat $hash_key
87+
if [ "$CI" != "" ]; then
88+
echo "Image input"
89+
cat $hash_key
90+
fi
8991
echo "Image input checksum ${cksum}"
9092

9193
# Print docker version

0 commit comments

Comments
 (0)