diff options
author | Yasuhiro Matsumoto <mattn.jp@gmail.com> | 2017-02-16 15:56:32 +0900 |
---|---|---|
committer | Yasuhiro Matsumoto <mattn.jp@gmail.com> | 2017-02-16 15:56:32 +0900 |
commit | d03b7b541f5559f278f1f9d9cd3b5caa89d3af1a (patch) | |
tree | 14271b45d80bdeed2d0d1910f19055fa7916523c | |
parent | fixes race (diff) | |
download | golite-d03b7b541f5559f278f1f9d9cd3b5caa89d3af1a.tar.gz golite-d03b7b541f5559f278f1f9d9cd3b5caa89d3af1a.tar.xz |
update to 2017
-rw-r--r-- | tool/upgrade.go | 2 |
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 == "" { |