Skip to content

Commit 25a069c

Browse files
committed
Backticks inside double-quotes are executed; need to escape them
1 parent 0dcedef commit 25a069c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/test-utils

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,6 +86,6 @@ print-binary-versions() {
8686
echo 'Versions:'
8787
local bin
8888
for bin in "${_TEST_BINARIES[@]}"; do
89-
"$bin" --version || echo "`$bin --version` failed with status $?" >&2
89+
"$bin" --version || echo "\`$bin --version\` failed with status $?" >&2
9090
done
9191
}

0 commit comments

Comments
 (0)