diff options
author | Ryan Dahl <ry@tinyclouds.org> | 2018-05-25 12:15:48 -0400 |
---|---|---|
committer | Ryan Dahl <ry@tinyclouds.org> | 2018-05-25 12:16:02 -0400 |
commit | 5353e9e90f3cdc090acec6b81c90e803ef22dcda (patch) | |
tree | 9aaa10b9269239a7a139b80451a8bc4ecd7cec74 /integration_test.go | |
parent | 016684a5865a52a1371a7a30c0d1a43e66d4db81 (diff) |
Rename --root flag to --cachedir
Diffstat (limited to 'integration_test.go')
-rw-r--r-- | integration_test.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/integration_test.go b/integration_test.go index 4c525544c..f1a60f499 100644 --- a/integration_test.go +++ b/integration_test.go @@ -59,7 +59,7 @@ func checkOutput(t *testing.T, outFile string, denoFn string) { panic(err) } - cmd := exec.Command(denoFn, "--root="+dir, jsFile) + cmd := exec.Command(denoFn, "--cachedir="+dir, jsFile) var out bytes.Buffer cmd.Stdout = &out err = cmd.Run() |