Skip to content

Commit f3ddea0

Browse files
committed
Fix quotes
1 parent 8fd06ce commit f3ddea0

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

scripts/check-backwards-compatibility

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,15 +47,15 @@ for tag in $tags; do
4747
# I'm getting an exit code 128 when atddiff returns 3 (as of git 2.43.0),
4848
# contrary to what 'git difftool --help' promises for '--trust-exit-code'.
4949
# I'd report the bug if it was easier. -- Martin
50-
git difftool --trust-exit-code -x 'atddiff $atddiff_options' -y \
50+
git difftool --trust-exit-code -x "atddiff $atddiff_options" -y \
5151
"$tag" "origin/main" -- semgrep_output_v1.atd > before.txt
5252
ret=$?
5353
if [ "$ret" -ge 1 ] && [ "$ret" -le 2 ]; then
5454
echo "ERROR: atddiff had an error: $ret"
5555
cat before.txt
5656
exit 1
5757
fi
58-
git difftool --trust-exit-code -x 'atddiff $atddiff_options' -y \
58+
git difftool --trust-exit-code -x "atddiff $atddiff_options" -y \
5959
"$tag" "HEAD" -- semgrep_output_v1.atd > after.txt
6060
ret=$?
6161
if [ "$ret" -ge 1 ] && [ "$ret" -le 2 ]; then

0 commit comments

Comments
 (0)