Skip to content

Commit 47f159b

Browse files
committed
shell check 3
1 parent 9506682 commit 47f159b

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

scripts/performance_test.sh

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,8 @@ DATE_CMD="date"
2727
# gdate is installed by coreutils on macOS
2828
if [[ $(uname -s) == "Darwin" ]]; then
2929
if ! command -v gdate &> /dev/null; then
30-
fatal "gdate could not be found. Please `brew install coreutils` to proceed."
30+
# shellcheck disable=SC2006 # we explicitly want to use backticks here
31+
fatal "gdate could not be found. Please \`brew install coreutils\` to proceed."
3132
fi
3233
DATE_CMD="gdate"
3334
fi

0 commit comments

Comments
 (0)