diff options
author | mattn <mattn.jp@gmail.com> | 2018-02-07 21:14:15 +0900 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-02-07 21:14:15 +0900 |
commit | 3c6eef45ff2de301fee18d11cd8727f65754eeb5 (patch) | |
tree | 4c01ace213e89588dc85e79b83a1eb737752cc8c /tool/upgrade.go | |
parent | Merge pull request #525 from mattn/add-usleep (diff) | |
parent | bump sqlite 3.22.0 (diff) | |
download | golite-3c6eef45ff2de301fee18d11cd8727f65754eeb5.tar.gz golite-3c6eef45ff2de301fee18d11cd8727f65754eeb5.tar.xz |
Merge pull request #527 from mattn/sqlite-amalgamation-3220000
bump sqlite 3.22.0
Diffstat (limited to 'tool/upgrade.go')
-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 94ed39d..275f915 100644 --- a/tool/upgrade.go +++ b/tool/upgrade.go @@ -29,7 +29,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/2017/" + s.Text() + url = "https://www.sqlite.org/2018/" + s.Text() } }) if url == "" { |