summaryrefslogtreecommitdiffstats
path: root/contrib
diff options
context:
space:
mode:
Diffstat (limited to 'contrib')
-rw-r--r--contrib/pr/checkout.go3
1 files changed, 2 insertions, 1 deletions
diff --git a/contrib/pr/checkout.go b/contrib/pr/checkout.go
index 34cd82ff0a..1f387f824e 100644
--- a/contrib/pr/checkout.go
+++ b/contrib/pr/checkout.go
@@ -247,7 +247,8 @@ func main() {
log.Fatalf("Failed to duplicate this code file in PR : %v", err)
}
}
- time.Sleep(5 * time.Second)
+ //Force build of js, css, bin, ...
+ runCmd("make", "build")
//Start with integration test
runCmd("go", "run", "-tags", "sqlite sqlite_unlock_notify", codeFilePath, "-run")
}