From 41ede45e6b2573a2e6215d5d6ba860ae18e812c3 Mon Sep 17 00:00:00 2001 From: Mehul Kar Date: Fri, 7 Apr 2023 23:58:17 -0700 Subject: [PATCH] Remove unused constant --- cli/internal/run/run.go | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/cli/internal/run/run.go b/cli/internal/run/run.go index 5d087345600f9..bcae022e8dc3f 100644 --- a/cli/internal/run/run.go +++ b/cli/internal/run/run.go @@ -30,18 +30,6 @@ import ( "github.com/pkg/errors" ) -var _cmdLong = ` -Run tasks across projects in your monorepo. - -By default, turbo executes tasks in topological order (i.e. -dependencies first) and then caches the results. Re-running commands for -tasks already in the cache will skip re-execution and immediately move -artifacts from the cache into the correct output folders (as if the task -occurred again). - -Arguments passed after '--' will be passed through to the named tasks. -` - // ExecuteRun executes the run command func ExecuteRun(ctx gocontext.Context, helper *cmdutil.Helper, signalWatcher *signals.Watcher, args *turbostate.ParsedArgsFromRust) error { base, err := helper.GetCmdBase(args)