From f12d409a0137751282915c9a5e1ee7633907d199 Mon Sep 17 00:00:00 2001 From: Steve Streeting Date: Tue, 27 Oct 2015 08:47:09 +0000 Subject: [PATCH] Make sure we don't accidentally run *.sh.orig (merge remnants) in test --- script/integration.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/script/integration.go b/script/integration.go index 442206f0..968987e7 100644 --- a/script/integration.go +++ b/script/integration.go @@ -13,7 +13,7 @@ import ( var ( erroring = false maxprocs = 4 - testPattern = regexp.MustCompile(`test/test-([a-z\-]+)\.sh`) + testPattern = regexp.MustCompile(`test/test-([a-z\-]+)\.sh$`) ) func mainIntegration() {