Skip to content

Commit a90968d

Browse files
committed
Go: Replace go work vendor with go mod vendor
1 parent a04f08f commit a90968d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

go/gen.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ def options():
4848
existing_build_files = set(go_extractor_dir.glob("*/**/BUILD.bazel"))
4949

5050
print("updating vendor directory")
51-
subprocess.check_call([go, "-C", go_extractor_dir, "work", "vendor"])
51+
subprocess.check_call([go, "-C", go_extractor_dir, "mod", "vendor"])
5252

5353
if opts.force:
5454
print("clearing generated BUILD files")

0 commit comments

Comments
 (0)