Skip to content
This repository has been archived by the owner on Dec 7, 2023. It is now read-only.

Commit

Permalink
cmd/ignite/run: update imports with new path for preflight checkers
Browse files Browse the repository at this point in the history
  • Loading branch information
najeal committed Aug 30, 2019
1 parent 6a28bcc commit 04618ef
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions cmd/ignite/run/start.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import (
"fmt"

"github.com/weaveworks/ignite/pkg/operations"
"github.com/weaveworks/ignite/pkg/preflight"
"github.com/weaveworks/ignite/pkg/preflight/checkers"
"github.com/weaveworks/ignite/pkg/util"
"k8s.io/apimachinery/pkg/util/sets"
)
Expand Down Expand Up @@ -39,7 +39,7 @@ func Start(so *startOptions) error {
}

ignoredPreflightErrors := sets.NewString(util.ToLower(so.StartFlags.IgnoredPreflightErrors)...)
if err := preflight.StartCmdChecks(so.vm, ignoredPreflightErrors); err != nil {
if err := checkers.StartCmdChecks(so.vm, ignoredPreflightErrors); err != nil {
return err
}

Expand Down

0 comments on commit 04618ef

Please sign in to comment.