We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9506682 commit 47f159bCopy full SHA for 47f159b
scripts/performance_test.sh
@@ -27,7 +27,8 @@ DATE_CMD="date"
27
# gdate is installed by coreutils on macOS
28
if [[ $(uname -s) == "Darwin" ]]; then
29
if ! command -v gdate &> /dev/null; then
30
- fatal "gdate could not be found. Please `brew install coreutils` to proceed."
+ # shellcheck disable=SC2006 # we explicitly want to use backticks here
31
+ fatal "gdate could not be found. Please \`brew install coreutils\` to proceed."
32
fi
33
DATE_CMD="gdate"
34
0 commit comments