diff options
author | Antoine GIRARD <sapk@users.noreply.github.com> | 2020-02-16 17:30:09 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-02-16 16:30:09 +0000 |
commit | df758f3cc9aa62ef96bb2dd29624d717383fef0e (patch) | |
tree | 2258f73de63bf8c8fa98ec3b9fcb424c7716829b /contrib | |
parent | c0bc9871be7aadfdb02bf4d5ed138bd1ae4c1eb1 (diff) | |
download | gitea-df758f3cc9aa62ef96bb2dd29624d717383fef0e.tar.gz gitea-df758f3cc9aa62ef96bb2dd29624d717383fef0e.zip |
make/pr: enforce vendor for run (#10296)
Diffstat (limited to 'contrib')
-rw-r--r-- | contrib/pr/checkout.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/pr/checkout.go b/contrib/pr/checkout.go index 1f387f824e..7089942e7e 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) |