summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard W.M. Jones <rjones@redhat.com>2010-12-06 23:00:39 +0000
committerRichard W.M. Jones <rjones@redhat.com>2010-12-06 23:00:39 +0000
commitd60d959e8bd83793fadc7afe750d5eda94c8994b (patch)
tree14b880ae4a85b3afd436ec0a1aeefa2dbacaf275
parente7b49d4fb2eacf2a2e114203f74ba386f04b5bc0 (diff)
downloadfebootstrap-d60d959e8bd83793fadc7afe750d5eda94c8994b.tar.gz
febootstrap-d60d959e8bd83793fadc7afe750d5eda94c8994b.tar.xz
febootstrap-d60d959e8bd83793fadc7afe750d5eda94c8994b.zip
Properly ignore .*.hmac files (accidental reopening of RHBZ#654638).
-rw-r--r--febootstrap.ml2
1 files changed, 1 insertions, 1 deletions
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