From 9752b934735768faf282bbb141f43cbc250b3a69 Mon Sep 17 00:00:00 2001 From: Oliver Steele Date: Thu, 6 Jul 2017 18:20:05 -0400 Subject: [PATCH] Rename command back to benchmark --- cmd/gojekyll/main.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/gojekyll/main.go b/cmd/gojekyll/main.go index bf0ceba..7e3b3e0 100644 --- a/cmd/gojekyll/main.go +++ b/cmd/gojekyll/main.go @@ -33,7 +33,7 @@ var ( build = app.Command("build", "Build your site").Alias("b") clean = app.Command("clean", "Clean the site (removes site output) without building.") - benchmark = app.Command("profile", "Repeat build for ten seconds. Implies --profile.") + benchmark = app.Command("benchmark", "Repeat build for ten seconds. Implies --profile.") render = app.Command("render", "Render a file or URL path to standard output") renderPath = render.Arg("PATH", "Path or URL").String()