diff options
author | Brad King <brad.king@kitware.com> | 2017-07-05 16:56:52 (GMT) |
---|---|---|
committer | Kitware Robot <kwrobot@kitware.com> | 2017-07-05 16:56:55 (GMT) |
commit | 1c73f354a36211771539bf396875bcbade8a383f (patch) | |
tree | 512766767bbff3468aa7f57eef192f14645b2329 | |
parent | 295d9bf2bd795da551d5ac266c53eeac2de45a71 (diff) | |
parent | 16d495253b45ae802ac0d78bc33f6caaa5285370 (diff) | |
download | CMake-1c73f354a36211771539bf396875bcbade8a383f.zip CMake-1c73f354a36211771539bf396875bcbade8a383f.tar.gz CMake-1c73f354a36211771539bf396875bcbade8a383f.tar.bz2 |
Merge topic 'clang-format-missing'
16d49525 clang-format.bash: Fix error message when clang-format is not found
Acked-by: Kitware Robot <kwrobot@kitware.com>
Merge-request: !1029
-rwxr-xr-x | Utilities/Scripts/clang-format.bash | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Utilities/Scripts/clang-format.bash b/Utilities/Scripts/clang-format.bash index edcda77..428a9e4 100755 --- a/Utilities/Scripts/clang-format.bash +++ b/Utilities/Scripts/clang-format.bash @@ -92,7 +92,7 @@ fi # Verify that we have a tool. if ! type -p "$clang_format" >/dev/null; then - echo "Unable to locate '$clang_format'" + echo "Unable to locate a 'clang-format' tool." exit 1 fi |