From 05ca6adf9e244d02dcc0a3ce461c7c5d7446c802 Mon Sep 17 00:00:00 2001 From: John Dietz Date: Mon, 23 Oct 2023 19:15:35 -0400 Subject: [PATCH] chore: remove prerun so we can support non-docker environments (#1863) --- cmd/launch.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/launch.go b/cmd/launch.go index 055225c1e..c40bdbedc 100644 --- a/cmd/launch.go +++ b/cmd/launch.go @@ -38,7 +38,7 @@ func launchUp() *cobra.Command { Use: "up", Short: "launch new console and api instance", TraverseChildren: true, - PreRun: common.CheckDocker, + // PreRun: common.CheckDocker, // TODO: check runtimes when we can support more runtimes Run: func(cmd *cobra.Command, args []string) { launch.Up(additionalHelmFlags, false, true) },