From df758f3cc9aa62ef96bb2dd29624d717383fef0e Mon Sep 17 00:00:00 2001 From: Antoine GIRARD Date: Sun, 16 Feb 2020 17:30:09 +0100 Subject: [PATCH] make/pr: enforce vendor for run (#10296) --- contrib/pr/checkout.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/contrib/pr/checkout.go b/contrib/pr/checkout.go index 1f387f824..7089942e7 100644 --- a/contrib/pr/checkout.go +++ b/contrib/pr/checkout.go @@ -250,7 +250,7 @@ func main() { //Force build of js, css, bin, ... runCmd("make", "build") //Start with integration test - runCmd("go", "run", "-tags", "sqlite sqlite_unlock_notify", codeFilePath, "-run") + runCmd("go", "run", "-mod", "vendor", "-tags", "sqlite sqlite_unlock_notify", codeFilePath, "-run") } func runCmd(cmd ...string) { log.Printf("Executing : %s ...\n", cmd)