Skip to content

Commit 56f0dcf

Browse files
committed
Fix diff script to allow diffing colab images
1 parent 61b2227 commit 56f0dcf

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)