Skip to content

Commit f3b5e18

Browse files
marking tools
1 parent b9d076a commit f3b5e18

1 file changed

Lines changed: 24 additions & 6 deletions

File tree

tools/tools.go

Lines changed: 24 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -41,13 +41,31 @@ func trace(args ...any) {
4141

4242
// available in taskfiles
4343
// note some of them are implemented in main.go (config, retry)
44+
// Note the comment in //DOC// is used to generate the list of tools in documentation
45+
// put one here if you add a markdown file for a tool
4446
var ToolList = []string{
45-
"wsk", "awk", "jq", "sh",
46-
"envsubst", "filetype", "random", "datefmt",
47-
"die", "urlenc", "replace", "base64", "validate",
48-
"echoif", "echoifempty", "echoifexists",
49-
"needupdate", "gron", "jj",
50-
"rename", "remove", "empty", "extract",
47+
"wsk",
48+
"awk",
49+
"jq",
50+
"sh",
51+
"envsubst",
52+
"filetype",
53+
"random",
54+
"datefmt", //DOC//
55+
"die",
56+
"urlenc",
57+
"replace",
58+
"base64", //DOC//
59+
"validate",
60+
"echoif",
61+
"echoifempty",
62+
"echoifexists",
63+
"needupdate",
64+
"gron", "jj",
65+
"rename",
66+
"remove",
67+
"empty",
68+
"extract",
5169
}
5270

5371
func IsTool(name string) bool {

0 commit comments

Comments
 (0)