From f9b01d017365876b759bf776ae8fd0afa05c8156 Mon Sep 17 00:00:00 2001 From: Uzair Ali <72073401+uzaxirr@users.noreply.github.com> Date: Thu, 22 Aug 2024 21:49:41 +0530 Subject: [PATCH] Fix wrong assignment of instace region to tags --- cmd/instance/instance.go | 1 - 1 file changed, 1 deletion(-) diff --git a/cmd/instance/instance.go b/cmd/instance/instance.go index 68902c5e..052b70a6 100644 --- a/cmd/instance/instance.go +++ b/cmd/instance/instance.go @@ -55,7 +55,6 @@ func init() { instanceCreateCmd.Flags().StringVarP(&tags, "tags", "g", "", "the instance's tags") instanceCreateCmd.Flags().StringVarP(&privateIPv4, "private_ipv4", "", "", "Private IPv4 address") instanceCreateCmd.Flags().StringVarP(&reservedIPv4, "reservedip", "", "", "Reserved IPv4 address") - instanceCreateCmd.Flags().StringVarP(&tags, "region", "e", "", "the region code identifier to have your instance built in") instanceCreateCmd.Flags().StringVar(&script, "script", "", "path to a script that will be uploaded to /usr/local/bin/civo-user-init-script on your instance, read/write/executable only by root and then will be executed at the end of the cloud initialization") instanceCreateCmd.Flags().BoolVar(&skipShebangCheck, "skip-shebang-check", false, "skip the shebang line check when passing a user init script")