summaryrefslogtreecommitdiffstats
path: root/hugolib/resource_chain_babel_test.go
diff options
context:
space:
mode:
authorBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>2020-12-18 18:20:12 +0100
committerBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>2020-12-19 17:03:07 +0100
commit10ae7c3210cd1add14d3750aa9512a87df0e1146 (patch)
tree6fa7eb1e9bfe093f3b611bbb286aefe591e1dc7a /hugolib/resource_chain_babel_test.go
parentae2d1bd52df0099190ef9195666d0788708b0385 (diff)
Improve LookPath
Diffstat (limited to 'hugolib/resource_chain_babel_test.go')
-rw-r--r--hugolib/resource_chain_babel_test.go6
1 files changed, 4 insertions, 2 deletions
diff --git a/hugolib/resource_chain_babel_test.go b/hugolib/resource_chain_babel_test.go
index e56c037f1..da03c83c7 100644
--- a/hugolib/resource_chain_babel_test.go
+++ b/hugolib/resource_chain_babel_test.go
@@ -16,11 +16,12 @@ package hugolib
import (
"bytes"
"os"
- "os/exec"
"path/filepath"
"runtime"
"testing"
+ "github.com/gohugoio/hugo/common/hexec"
+
jww "github.com/spf13/jwalterweatherman"
"github.com/gohugoio/hugo/htesting"
@@ -111,7 +112,8 @@ Transpiled: {{ $transpiled.Content | safeJS }}
b.WithSourceFile("babel.config.js", babelConfig)
b.Assert(os.Chdir(workDir), qt.IsNil)
- _, err = exec.Command("npm", "install").CombinedOutput()
+ cmd, _ := hexec.SafeCommand("npm", "install")
+ _, err = cmd.CombinedOutput()
b.Assert(err, qt.IsNil)
b.Build(BuildCfg{})