From 415b903a7b18146417863039e77a18448783c620 Mon Sep 17 00:00:00 2001 From: Kotaro Inoue Date: Tue, 4 Oct 2022 21:24:09 +0900 Subject: [PATCH] docs: fix `url_template` line of the brew example (#3432) ## If applied, this commit will... This PR fixes one line in the `homebrew` example section. ## Why is this change being made? In the example of the `homebrew` section, the `url_template` value seems to be wrong. --- www/docs/customization/homebrew.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/www/docs/customization/homebrew.md b/www/docs/customization/homebrew.md index 73ca5cacc3a..3f0a3bf4304 100644 --- a/www/docs/customization/homebrew.md +++ b/www/docs/customization/homebrew.md @@ -57,7 +57,7 @@ brews: # gitlab or gitea) # # Default depends on the client. - url_template: "http://github.mycompany.com/foo/bar/releases/{{ .Tag }}/{{ .ArtifactName }}" + url_template: "http://github.mycompany.com/foo/bar/releases/download/{{ .Tag }}/{{ .ArtifactName }}" # Allows you to set a custom download strategy. Note that you'll need # to implement the strategy and add it to your tap repository.