From d60d959e8bd83793fadc7afe750d5eda94c8994b Mon Sep 17 00:00:00 2001 From: "Richard W.M. Jones" Date: Mon, 6 Dec 2010 23:00:39 +0000 Subject: [PATCH] Properly ignore .*.hmac files (accidental reopening of RHBZ#654638). --- febootstrap.ml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/febootstrap.ml b/febootstrap.ml index 8fee7b9..58b2962 100644 --- a/febootstrap.ml +++ b/febootstrap.ml @@ -151,7 +151,7 @@ let () = ); (* Split the list of files into ones for hostfiles and ones for base image. *) - let p_hmac = Str.regexp "/\\.*\\.hmac$" in + let p_hmac = Str.regexp "/\\..*\\.hmac$" in let hostfiles = ref [] and baseimgfiles = ref [] in -- 1.8.3.1