Skip to content

Commit eb13b73

Browse files
authored
fix(gomock): add missing mnemonic to gomock action (#4313)
1 parent a7bae09 commit eb13b73

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

extras/gomock.bzl

+1-1
Original file line numberDiff line numberDiff line change
@@ -101,14 +101,14 @@ def _gomock_source_impl(ctx):
101101
cmd = "$(pwd)/" + ctx.file.mockgen_tool.path,
102102
args = " ".join(args),
103103
out = ctx.outputs.out.path,
104-
mnemonic = "GoMockSourceGen",
105104
),
106105
env = {
107106
# GOCACHE is required starting in Go 1.12
108107
"GOCACHE": "./.gocache",
109108
# gomock runs in the special GOPATH environment
110109
"GO111MODULE": "off",
111110
},
111+
mnemonic = "GoMockSourceGen",
112112
)
113113

114114
_gomock_source = rule(

0 commit comments

Comments
 (0)