Merge pull request #248 from afkham/master

Fix typo
mine
Fernand Galiana 2019-07-08 15:00:52 -06:00 committed by GitHub
commit 51ba2af98c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -16,7 +16,7 @@ import (
func runK(clear bool, app *appView, args ...string) bool { func runK(clear bool, app *appView, args ...string) bool {
bin, err := exec.LookPath("kubectl") bin, err := exec.LookPath("kubectl")
if err != nil { if err != nil {
log.Error().Msgf("Unable to find kubeclt command in path %v", err) log.Error().Msgf("Unable to find kubectl command in path %v", err)
return false return false
} }