Skip to content

Commit

Permalink
fix: substitution
Browse files Browse the repository at this point in the history
  • Loading branch information
peakschris committed Jun 29, 2024
1 parent d909db4 commit 63c2bc4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions rules/diff_test.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -173,9 +173,9 @@ fi
if ! diff {strip_trailing_cr}"$RF1" "$RF2"; then
MSG={fail_msg}
if [[ "${{MSG}}"=="" (
MSG="why? diff {strip_trailing_cr}"${RF1}" "${RF2}" | cat -v"
MSG="why? diff {strip_trailing_cr}"${{RF1}}" "${{RF2}}" | cat -v"
)
echo >&2 "FAIL: files \"{file1}\" and \"{file2}\" differ. ${MSG}"
echo >&2 "FAIL: files \"{file1}\" and \"{file2}\" differ. ${{MSG}}"
exit 1
fi
""".format(
Expand Down

0 comments on commit 63c2bc4

Please sign in to comment.