Skip to content

Commit c9a17d3

Browse files
authored
Fix diff script to allow diffing colab images (#1531)
Also still works for diffing kaggle images.
1 parent 8a95ad1 commit c9a17d3

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

diff

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ fi
104104
for cmd in "${CMDS[@]}"; do
105105
echo "== Comparing $cmd =="
106106
diff --suppress-common-lines --side-by-side \
107-
<(docker run -v $PWD/tools:/tools --rm "$BASE_IMAGE_TAG" /bin/bash -c "$cmd") \
108-
<(docker run -v $PWD/tools:/tools --rm "$TARGET_IMAGE_TAG" /bin/bash -c "$cmd") \
107+
<(docker run -v $PWD/tools:/tools --entrypoint bash --rm "$BASE_IMAGE_TAG" -c "$cmd") \
108+
<(docker run -v $PWD/tools:/tools --entrypoint bash --rm "$TARGET_IMAGE_TAG" -c "$cmd") \
109109
&& echo 'No diff' || true
110110
done

0 commit comments

Comments
 (0)