Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion cloudbuild/new-distro-detector/run.sh
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ gsutil -q cp "${LAST_KNOWN_LIST}" - \
| tee known_families.txt

# If there is a difference, print the diff, and...
if ! diff known_families.txt current_families.txt; then
if ! diff --ignore-all-space --ignore-blank-lines known_families.txt current_families.txt; then
# Print instructions for handling the error.
# Set +x temporarily so that the banner is only printed once.
set +x
Expand Down
Loading