Skip to content

Commit df758f3

Browse files
authored
make/pr: enforce vendor for run (#10296)
1 parent c0bc987 commit df758f3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

contrib/pr/checkout.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -250,7 +250,7 @@ func main() {
250250
//Force build of js, css, bin, ...
251251
runCmd("make", "build")
252252
//Start with integration test
253-
runCmd("go", "run", "-tags", "sqlite sqlite_unlock_notify", codeFilePath, "-run")
253+
runCmd("go", "run", "-mod", "vendor", "-tags", "sqlite sqlite_unlock_notify", codeFilePath, "-run")
254254
}
255255
func runCmd(cmd ...string) {
256256
log.Printf("Executing : %s ...\n", cmd)

0 commit comments

Comments
 (0)