aboutsummaryrefslogtreecommitdiff
path: root/tool/upgrade.go
diff options
context:
space:
mode:
authorYasuhiro Matsumoto <mattn.jp@gmail.com>2017-02-16 15:56:32 +0900
committerYasuhiro Matsumoto <mattn.jp@gmail.com>2017-02-16 15:56:32 +0900
commitd03b7b541f5559f278f1f9d9cd3b5caa89d3af1a (patch)
tree14271b45d80bdeed2d0d1910f19055fa7916523c /tool/upgrade.go
parentfixes race (diff)
downloadgolite-d03b7b541f5559f278f1f9d9cd3b5caa89d3af1a.tar.gz
golite-d03b7b541f5559f278f1f9d9cd3b5caa89d3af1a.tar.xz
update to 2017
Diffstat (limited to 'tool/upgrade.go')
-rw-r--r--tool/upgrade.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/tool/upgrade.go b/tool/upgrade.go
index adfe363..f93f35c 100644
--- a/tool/upgrade.go
+++ b/tool/upgrade.go
@@ -28,7 +28,7 @@ func main() {
var url string
doc.Find("a").Each(func(_ int, s *goquery.Selection) {
if url == "" && strings.HasPrefix(s.Text(), "sqlite-amalgamation-") {
- url = "https://www.sqlite.org/2016/" + s.Text()
+ url = "https://www.sqlite.org/2017/" + s.Text()
}
})
if url == "" {