Skip to content

Commit e2d51fa

Browse files
authored
Merge pull request #1958 from GoogleContainerTools/move_diff
move diff tool into its own directory
2 parents faac4a1 + 020fa06 commit e2d51fa

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.github/workflows/image-check.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ jobs:
5151
- name: Diff All Images
5252
id: diff
5353
run: |
54-
./private/tools/diff.bash \
54+
./private/tools/diff/diff.bash \
5555
--query-bazel --registry-spawn-https \
5656
--head-ref ${{ github.head_ref }} \
5757
--base-ref ${{ github.event.pull_request.base.ref }} \
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/usr/bin/env bash
22
set -o pipefail -o errexit -o nounset
33

4-
# ./private/tools/diff.bash --head-ref test --base-ref test --query-bazel --registry-spawn --report ./report.log
4+
# ./private/tools/diff/diff.bash --head-ref test --base-ref test --query-bazel --registry-spawn --report ./report.log
55

66
STDERR=$(mktemp)
77

@@ -208,7 +208,7 @@ function test_image() {
208208
crane push "$(bazel cquery --output=files $image_label)" "$repo_stage"
209209
if ! diffoci diff --pull=always --all-platforms "$repo_origin" "$repo_stage"; then
210210
echo ""
211-
echo " 🔬 To reproduce: bazel run //private/tools:diff -- --only $image_label"
211+
echo " 🔬 To reproduce: bazel run //private/tools/diff:diff -- --only $image_label"
212212
echo ""
213213
echo "👎 $repo_origin and $repo_stage are different."
214214
if [[ "${SET_GITHUB_OUTPUT}" == "1" ]]; then

0 commit comments

Comments
 (0)