aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEmil Hessman <c.emil.hessman@gmail.com>2014-10-27 12:43:14 +1100
committerAndrew Gerrand <adg@golang.org>2014-10-27 12:43:14 +1100
commit78082dfa801d484848ac47c04ce3aa9805d2b0c9 (patch)
tree9556cbc2284303efc487e2e238b11374507d475a
parenta9422651f9600c38b3f31f08f1be5a96cb338306 (diff)
downloadgo-78082dfa801d484848ac47c04ce3aa9805d2b0c9.tar.gz
go-78082dfa801d484848ac47c04ce3aa9805d2b0c9.zip
misc/makerelease/windows: fix 404 help URL in installer
ARPHELPLINK yields 404; update the URL. While here, also prefix the ARPREADME and ARPURLINFOABOUT URL's with the HTTP scheme to make 'em clickable links in the Add or Remove Programs listing. LGTM=adg R=golang-codereviews CC=adg, golang-codereviews https://golang.org/cl/154580045
-rw-r--r--misc/makerelease/windows/installer.wxs6
1 files changed, 3 insertions, 3 deletions
diff --git a/misc/makerelease/windows/installer.wxs b/misc/makerelease/windows/installer.wxs
index 66e0913ba8..01178e2651 100644
--- a/misc/makerelease/windows/installer.wxs
+++ b/misc/makerelease/windows/installer.wxs
@@ -39,9 +39,9 @@
<Property Id="ARPCOMMENTS" Value="The Go programming language is a fast, statically typed, compiled language that feels like a dynamically typed, interpreted language." />
<Property Id="ARPCONTACT" Value="golang-nuts@googlegroups.com" />
-<Property Id="ARPHELPLINK" Value="golang.org/doc/community.html" />
-<Property Id="ARPREADME" Value="golang.org" />
-<Property Id="ARPURLINFOABOUT" Value="golang.org" />
+<Property Id="ARPHELPLINK" Value="https://golang.org/help/" />
+<Property Id="ARPREADME" Value="https://golang.org" />
+<Property Id="ARPURLINFOABOUT" Value="https://golang.org" />
<Property Id="LicenseAccepted">1</Property>
<Icon Id="gopher.ico" SourceFile="images\gopher.ico"/>
<Property Id="ARPPRODUCTICON" Value="gopher.ico" />