Skip to content

Commit e271a5b

Browse files
committed
mk/diff.sh: fix direction of diff in error message
1 parent bc821ad commit e271a5b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

mk/diff.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ else
2020
# We're gonna fail. If we're running in CI, emit a Github
2121
# error message.
2222
if [ -v GITHUB_ENV ]; then
23-
DIFFTEXT=$($DIFF "$ACTUAL" "$EXPECTED" | sed 's/$/%0A/' | tr -d '\n')
23+
DIFFTEXT=$($DIFF "$EXPECTED" "$ACTUAL" | sed 's/$/%0A/' | tr -d '\n')
2424
ACTUAL=$(realpath "$ACTUAL")
2525
ACTUAL="${ACTUAL#$FSTAR_ROOT}"
2626
EXPECTED=$(realpath "$EXPECTED")

0 commit comments

Comments
 (0)