File tree 2 files changed +11
-4
lines changed
2 files changed +11
-4
lines changed Original file line number Diff line number Diff line change @@ -11,10 +11,11 @@ import (
11
11
12
12
var username string
13
13
var password string
14
+ var cliVersion string
14
15
15
16
// rootCmd represents the base command when called without any subcommands
16
17
var rootCmd = & cobra.Command {
17
- Version : "0.2.0" ,
18
+ Version : cliVersion ,
18
19
Use : "vcc" ,
19
20
Short : "Download binaries from customerconnect.vmware.com" ,
20
21
Long : "vcc downloads binaries from customerconnect.vmware.com" ,
Original file line number Diff line number Diff line change 7
7
readonly verison=$1
8
8
readonly script_dir=" $( cd " $( dirname " ${BASH_SOURCE[0]} " ) " > /dev/null 2>&1 && pwd ) /.."
9
9
10
- env GOOS=linux GOARCH=amd64 go build -o ${script_dir} /builds/vcc-linux-v${verison}
10
+ env GOOS=linux GOARCH=amd64 go build \
11
+ -ldflags=" -X 'github.com/vmware-labs/vmware-customer-connect-cli/cmd.cliVersion=${verison} '" \
12
+ -o ${script_dir} /builds/vcc-linux-v${verison}
11
13
12
- env GOOS=darwin GOARCH=amd64 go build -o ${script_dir} /builds/vcc-darwin-v${verison}
14
+ env GOOS=darwin GOARCH=amd64 go build \
15
+ -ldflags=" -X github.com/vmware-labs/vmware-customer-connect-cli/cmd.cliVersion=${verison} " \
16
+ -o ${script_dir} /builds/vcc-darwin-v${verison}
13
17
14
- env GOOS=windows GOARCH=amd64 go build -o ${script_dir} /builds/vcc-windows-v${verison} .exe
18
+ env GOOS=windows GOARCH=amd64 go build \
19
+ -ldflags=" -X github.com/vmware-labs/vmware-customer-connect-cli/cmd.cliVersion=${verison} " \
20
+ -o ${script_dir} /builds/vcc-windows-v${verison} .exe
You can’t perform that action at this time.
0 commit comments