diff options
author | Bjørn Erik Pedersen <[email protected]> | 2022-03-16 08:48:16 +0100 |
---|---|---|
committer | Bjørn Erik Pedersen <[email protected]> | 2022-03-16 08:54:25 +0100 |
commit | 65a78cae1ecdcfcb0701d78fed812083a1a6e82b (patch) | |
tree | b57295e36c91cbfb76bdd606657d0c1f6c7fdf2b /scripts | |
parent | 4d6d1d08dad5538f4710fc4b56e09419aa0d854b (diff) | |
download | hugo-65a78cae1ecdcfcb0701d78fed812083a1a6e82b.tar.gz hugo-65a78cae1ecdcfcb0701d78fed812083a1a6e82b.zip |
tpl: Sync go_templates for Go 1.18
Using Go tag go1.18 4aa1efed4853ea067d665a952eee77c52faac774
Updates #9677
Diffstat (limited to 'scripts')
-rw-r--r-- | scripts/fork_go_templates/main.go | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/scripts/fork_go_templates/main.go b/scripts/fork_go_templates/main.go index f550efbbb..4ffba018f 100644 --- a/scripts/fork_go_templates/main.go +++ b/scripts/fork_go_templates/main.go @@ -17,8 +17,7 @@ import ( ) func main() { - // TODO(bep) git checkout tag - // The current is built with Go version 2f0da6d9e29d9b9d5a4d10427ca9f71d12bbacc8 / go1.16 + // The current is built with Go tag go1.18 4aa1efed4853ea067d665a952eee77c52faac774 fmt.Println("Forking ...") defer fmt.Println("Done ...") @@ -40,7 +39,7 @@ func main() { const ( // TODO(bep) - goSource = "/Users/bep/dev/go/dump/go/src" + goSource = "/Users/bep/dev/go/misc/go/src" forkRoot = "../../tpl/internal/go_templates" ) |