summaryrefslogtreecommitdiff
path: root/misc
diff options
context:
space:
mode:
authorEmil Hessman <c.emil.hessman@gmail.com>2014-10-27 12:43:14 +1100
committerEmil Hessman <c.emil.hessman@gmail.com>2014-10-27 12:43:14 +1100
commit7e7e810574dba241d423a838981bee396bf3cd44 (patch)
tree7b1bfbe5cd507e4914ff274cce4353c283ba83f5 /misc
parent44440acd56598e365576b7d6b46767d2055bb9b2 (diff)
downloadgo-7e7e810574dba241d423a838981bee396bf3cd44.tar.gz
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://codereview.appspot.com/154580045 Committer: Andrew Gerrand <adg@golang.org>
Diffstat (limited to 'misc')
-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 66e0913ba..01178e265 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" />