From 810d4a6ff6d0b9c90f7720a7825a65f5356e4bba Mon Sep 17 00:00:00 2001 From: David Spickett Date: Fri, 14 May 2021 14:30:51 +0000 Subject: [PATCH] [utils] Don't print username in arcanist clang format message I didn't realise this message was also posted to the phabricator review. Just say "the user's local path". "local" is the important part, the username is not important. --- utils/arcanist/clang-format.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/utils/arcanist/clang-format.sh b/utils/arcanist/clang-format.sh index cb49862fe06a..cc115f0bef0c 100755 --- a/utils/arcanist/clang-format.sh +++ b/utils/arcanist/clang-format.sh @@ -14,7 +14,7 @@ set -euo pipefail # switch to warning or error if you want to prompt the user. if ! hash clang-format >/dev/null; then echo "advice" - echo "clang-format not found in $(whoami)’s local PATH; not linting file." + echo "clang-format not found in user’s local PATH; not linting file." echo "====" exit 0 fi