From ae2f07de1a910d738af49c3d2efbafdbe123049f Mon Sep 17 00:00:00 2001 From: Alan Knowles Date: Tue, 26 May 2015 13:54:03 +0800 Subject: [PATCH] src/Project/Gtk.vala --- src/Project/Gtk.vala | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/Project/Gtk.vala b/src/Project/Gtk.vala index be08b7668..9917fb771 100644 --- a/src/Project/Gtk.vala +++ b/src/Project/Gtk.vala @@ -278,6 +278,9 @@ namespace Project { if (Regex.match_simple("~$", fn)) { continue; } + if (Regex.match_simple("^.", GLib.File.get_basename(fn))) { + continue; + } if (Regex.match_simple("\\.vala$", fn)) { var vv = (new Regex("\\.vala$")).replace( fn, fn.length, 0, ".bjs"); if (allfiles.index_of( vv) > -1) { -- 2.39.2