diff --git a/docs/pages/configuration/_partials/functions/start_dev/disable-open.mdx b/docs/pages/configuration/_partials/functions/start_dev/disable-open.mdx index 0f6474da8f..5c817ed7ea 100755 --- a/docs/pages/configuration/_partials/functions/start_dev/disable-open.mdx +++ b/docs/pages/configuration/_partials/functions/start_dev/disable-open.mdx @@ -4,7 +4,7 @@ #### `--disable-open` bool pipeline only {#start_dev-disable-open} -If enabled will not replace any pods +If enabled will not auto-open the URL diff --git a/pkg/devspace/devpod/manager.go b/pkg/devspace/devpod/manager.go index b519bc0719..361ffaef24 100644 --- a/pkg/devspace/devpod/manager.go +++ b/pkg/devspace/devpod/manager.go @@ -21,7 +21,7 @@ type Options struct { DisableSync bool `long:"disable-sync" description:"If enabled will not start any sync configuration"` DisablePortForwarding bool `long:"disable-port-forwarding" description:"If enabled will not start any port forwarding configuration"` DisablePodReplace bool `long:"disable-pod-replace" description:"If enabled will not replace any pods"` - DisableOpen bool `long:"disable-open" description:"If enabled will not replace any pods"` + DisableOpen bool `long:"disable-open" description:"If enabled will not auto-open the URL"` } type Manager interface {