diff --git a/digitalocean/digitalocean.go b/digitalocean/digitalocean.go index f178f14..1543330 100644 --- a/digitalocean/digitalocean.go +++ b/digitalocean/digitalocean.go @@ -127,7 +127,7 @@ func DestroyDroplet() (*utils.SelectItem, error) { selectItemDroplets := utils.ParseDropletListResults(droplets) - selectDropletPrompt := utils.CreateCustomSelectPrompt("Select Droplet to Delete", selectItemDroplets) + selectDropletPrompt := utils.CreateCustomSelectPrompt("Select droplet to delete", selectItemDroplets) selectedDropletIndex, _, err := selectDropletPrompt.Run() @@ -170,7 +170,7 @@ func DestroyDroplet() (*utils.SelectItem, error) { } promptReEnterDropletName := promptui.Prompt{ - Label: "Re enter Droplet name to confirm delete (WARNING DROPLET WILL BE DELETED FOREVER)", + Label: "Re enter droplet name to confirm delete (WARNING DROPLET WILL BE DELETED FOREVER)", Validate: validateDropletNameDeletion, } @@ -182,6 +182,7 @@ func DestroyDroplet() (*utils.SelectItem, error) { } fullDropletInfo := droplets[selectedDropletIndex] + selectedDropletIP, err := fullDropletInfo.PublicIPv4() if err != nil { diff --git a/version/version.go b/version/version.go index c25d825..d8d5ff6 100644 --- a/version/version.go +++ b/version/version.go @@ -9,7 +9,7 @@ import ( var GitCommit string // Version returns the main version number that is being run at the moment. -const Version = "1.0" +const Version = "1.1" // BuildDate returns the date the binary was built var BuildDate = ""