mirror of
https://github.com/gohugoio/hugo.git
synced 2024-11-07 20:30:36 -05:00
parent
c6d650c8c8
commit
836c24261f
1 changed files with 2 additions and 1 deletions
|
@ -18,6 +18,7 @@ import (
|
||||||
"os"
|
"os"
|
||||||
"path/filepath"
|
"path/filepath"
|
||||||
"runtime"
|
"runtime"
|
||||||
|
"strings"
|
||||||
"testing"
|
"testing"
|
||||||
|
|
||||||
"github.com/gohugoio/hugo/htesting"
|
"github.com/gohugoio/hugo/htesting"
|
||||||
|
@ -147,7 +148,7 @@ IMG SHORTCODE: /images/sunset_hu59e56ffff1bc1d8d122b1403d34e039f_90587_129x239_r
|
||||||
}
|
}
|
||||||
|
|
||||||
err = b.BuildE(BuildCfg{})
|
err = b.BuildE(BuildCfg{})
|
||||||
if runtime.GOOS != "windows" {
|
if runtime.GOOS != "windows" && !strings.Contains(runtime.GOARCH, "arm") {
|
||||||
// TODO(bep)
|
// TODO(bep)
|
||||||
c.Assert(err, qt.Not(qt.IsNil))
|
c.Assert(err, qt.Not(qt.IsNil))
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue