Skip to content
This repository was archived by the owner on Feb 24, 2026. It is now read-only.
Merged
Changes from 1 commit
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
Prev Previous commit
Next Next commit
chore: see what's the diff error
  • Loading branch information
ddixit14 authored Jan 10, 2024
commit 6b415763bff2a0ed5edf7769dd610e062513335e
4 changes: 3 additions & 1 deletion .kokoro/dependencies.sh
Original file line number Diff line number Diff line change
Expand Up @@ -74,12 +74,14 @@ function completenessCheck() {

# Compare two dependency lists
msg "Comparing dependency lists..."
diff .org-list.txt .new-list.txt >.diff.txt
# diff .org-list.txt .new-list.txt >.diff.txt
diff_result=$(diff .org-list.txt .new-list.txt)
if [[ $? == 0 ]]
then
msg "Success. No diff!"
else
msg "Diff found. See below: "
echo "$diff_result"
msg "You can also check .diff.txt file located in $1."
cat .diff.txt
return 1
Expand Down