From 4cf514f28c7e239db1bbcdab05ee0c6995c176c7 Mon Sep 17 00:00:00 2001 From: shenxianpeng Date: Thu, 19 Jun 2025 22:04:54 +0200 Subject: [PATCH 1/2] feat: update asdf-clang-tools help --- bin/help.deps | 5 +++-- bin/help.overview | 7 ++++++- 2 files changed, 9 insertions(+), 3 deletions(-) diff --git a/bin/help.deps b/bin/help.deps index 3ad6c1d..eb3e65d 100755 --- a/bin/help.deps +++ b/bin/help.deps @@ -1,4 +1,5 @@ #!/usr/bin/env bash -echo "curl" -echo "jq" +echo "asdf-clang-tools requires the following dependencies to be installed:" +echo "- curl" +echo "- jq" diff --git a/bin/help.overview b/bin/help.overview index 94af043..e1bd4f7 100755 --- a/bin/help.overview +++ b/bin/help.overview @@ -1,3 +1,8 @@ #!/usr/bin/env bash -echo "asdf plugin for clang tools - clang-format, clang-tidy, clang-query, clang-apply-replacements, and more" +echo "This is an asdf plugin for installing several clang tools:" +echo +echo "- clang-format" +echo "- clang-tidy" +echo "- clang-query" +echo "- clang-apply-replacements" From ca126fb7784d7b2d31913d94471ebb89ae8c4b34 Mon Sep 17 00:00:00 2001 From: shenxianpeng Date: Thu, 19 Jun 2025 22:07:28 +0200 Subject: [PATCH 2/2] add repo link to help --- bin/help.overview | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/bin/help.overview b/bin/help.overview index e1bd4f7..6355d46 100755 --- a/bin/help.overview +++ b/bin/help.overview @@ -1,8 +1,9 @@ #!/usr/bin/env bash echo "This is an asdf plugin for installing several clang tools:" -echo echo "- clang-format" echo "- clang-tidy" echo "- clang-query" echo "- clang-apply-replacements" +echo "See https://github.com/cpp-linter/asdf-clang-tools for more information" +echo