File tree 3 files changed +10
-2
lines changed
3 files changed +10
-2
lines changed Original file line number Diff line number Diff line change 11
11
# Output of the go coverage tool, specifically when used with LiteIDE
12
12
* .out
13
13
14
- config.prod.yml
14
+ config.prod.yml
15
+
16
+ # dist dir
17
+ dist
Original file line number Diff line number Diff line change @@ -20,6 +20,9 @@ checksum:
20
20
name_template : ' checksums.txt'
21
21
snapshot :
22
22
name_template : " {{ .Tag }}-next"
23
+ ldflags :
24
+ - -s -w -X cmd.version={{.Version}} -X cmd.commit={{.Commit}} -X cmd.date={{.Date}} -X cmd.builtBy=goreleaser
25
+ - ./usemsan=-msan
23
26
changelog :
24
27
sort : asc
25
28
filters :
Original file line number Diff line number Diff line change 15
15
version = "dev"
16
16
commit = "none"
17
17
date = "unknown"
18
+ builtBy = "unknown"
18
19
)
19
20
20
21
var versionCmd = & cobra.Command {
@@ -23,10 +24,11 @@ var versionCmd = &cobra.Command{
23
24
Run : func (cmd * cobra.Command , args []string ) {
24
25
fmt .Println (
25
26
fmt .Sprintf (
26
- `Current Beetle Version %v Commit %v, Built @%v` ,
27
+ `Current Beetle Version %v Commit %v, Built @%v by %v ` ,
27
28
version ,
28
29
commit ,
29
30
date ,
31
+ builtBy ,
30
32
),
31
33
)
32
34
You can’t perform that action at this time.
0 commit comments