Initialisms, man.
parent
984f563e21
commit
f424969553
|
@ -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: "🔌 "},
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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)
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue