Initialisms, man.

pull/4376/head
Sharif Elgamal 2019-05-30 10:40:45 -07:00
parent 984f563e21
commit f424969553
No known key found for this signature in database
GPG Key ID: 23CC0225BD9FD702
4 changed files with 6 additions and 6 deletions

View File

@ -78,7 +78,7 @@ var styles = map[StyleEnum]style{
Check: {Prefix: "✔️ "},
// Specialized purpose styles
IsoDownload: {Prefix: "💿 "},
ISODownload: {Prefix: "💿 "},
FileDownload: {Prefix: "💾 "},
Caching: {Prefix: "🤹 "},
StartingVM: {Prefix: "🔥 "},
@ -92,7 +92,7 @@ var styles = map[StyleEnum]style{
Celebrate: {Prefix: "🎉 "},
ContainerRuntime: {Prefix: "🎁 "},
Docker: {Prefix: "🐳 "},
Crio: {Prefix: "🎁 "}, // This should be a snow-flake, but the emoji has a strange width on macOS
CRIO: {Prefix: "🎁 "}, // This should be a snow-flake, but the emoji has a strange width on macOS
Containerd: {Prefix: "📦 "},
Permissions: {Prefix: "🔑 "},
Enabling: {Prefix: "🔌 "},

View File

@ -48,7 +48,7 @@ const (
Issues
Issue
Check
IsoDownload
ISODownload
FileDownload
Caching
StartingVM
@ -62,7 +62,7 @@ const (
Celebrate
ContainerRuntime
Docker
Crio
CRIO
Containerd
Permissions
Enabling

View File

@ -37,7 +37,7 @@ func (r *CRIO) Name() string {
// Name is a human readable name for CRIO
func (r *CRIO) Style() console.StyleEnum {
return console.Crio
return console.CRIO
}
// Version retrieves the current version of this runtime

View File

@ -76,7 +76,7 @@ func (f DefaultDownloader) CacheMinikubeISOFromURL(isoURL string) error {
options.ChecksumHash = crypto.SHA256
}
console.OutStyle(console.IsoDownload, "Downloading Minikube ISO ...")
console.OutStyle(console.ISODownload, "Downloading Minikube ISO ...")
if err := download.ToFile(isoURL, f.GetISOCacheFilepath(isoURL), options); err != nil {
return errors.Wrap(err, isoURL)
}