浏览代码

make/pr: enforce vendor for run (#10296)

tags/v1.10.5
Antoine GIRARD 4 年前
父节点
当前提交
df758f3cc9
没有帐户链接到提交者的电子邮件
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1
    1
      contrib/pr/checkout.go

+ 1
- 1
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)

正在加载...
取消
保存