Skip to content

Commit

Permalink
Replace minikube by minishift
Browse files Browse the repository at this point in the history
Fixes #64

Signed-off-by: Jeff MAURY <[email protected]>
  • Loading branch information
jeffmaury authored and benoitf committed Mar 23, 2019
1 parent 4f6b70d commit 0fb70cc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/platforms/minishift.ts
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ export class MinishiftHelper {
},
{ title: 'Verify if minishift is installed',
task: (_ctx: any, task: any) => {
if (!commandExists.sync('minikube')) {
if (!commandExists.sync('minishift')) {
command.error('E_REQUISITE_NOT_FOUND', { code: 'E_REQUISITE_NOT_FOUND' })
} else {
task.title = `${task.title}...done.`
Expand Down

1 comment on commit 0fb70cc

@l0rd
Copy link
Collaborator

@l0rd l0rd commented on 0fb70cc Mar 23, 2019

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thank you @jeffmaury

Please sign in to comment.