URI: 
       hugolib: Only run variable variable overwrite test on Go 1.11 - hugo - [fork] hugo port for 9front
  HTML git clone git@git.drkhsh.at/hugo.git
   DIR Log
   DIR Files
   DIR Refs
   DIR Submodules
   DIR README
   DIR LICENSE
       ---
   DIR commit 6022f219f1043138d80a821b48b8aab8a0eeeeef
   DIR parent 0c8a4154838e32a33d34202fd4fa0187aa502190
  HTML Author: Bjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>
       Date:   Tue, 28 Aug 2018 17:57:42 +0200
       
       hugolib: Only run variable variable overwrite test on Go 1.11
       
       Diffstat:
         M hugolib/resource_chain_test.go      |       5 ++++-
         M hugolib/testhelpers_test.go         |       4 ++++
       
       2 files changed, 8 insertions(+), 1 deletion(-)
       ---
   DIR diff --git a/hugolib/resource_chain_test.go b/hugolib/resource_chain_test.go
       @@ -257,7 +257,10 @@ T2: Content: {{ $combinedText.Content }}|{{ $combinedText.RelPermalink }}
                                b.AssertFileContent("public/rocks/hugo.txt", "Hugo Rocks!")
        
                        }},
       -                {"execute-as-template", func() bool { return true }, func(b *sitesBuilder) {
       +                {"execute-as-template", func() bool {
       +                        // TODO(bep) eventually remove
       +                        return isGo111()
       +                }, func(b *sitesBuilder) {
                                b.WithTemplates("home.html", `
        {{ $var := "Hugo Page" }}
        {{ if .IsHome }}
   DIR diff --git a/hugolib/testhelpers_test.go b/hugolib/testhelpers_test.go
       @@ -676,3 +676,7 @@ func dumpPages(pages ...*Page) {
        func isCI() bool {
                return os.Getenv("CI") != ""
        }
       +
       +func isGo111() bool {
       +        return strings.Contains(runtime.Version(), "1.11")
       +}