From 803f891f9aa4104ddabbda68f7ba8db3206e8fda Mon Sep 17 00:00:00 2001 From: Alan Knowles Date: Tue, 19 Jun 2018 10:18:22 +0800 Subject: [PATCH] src/strip.vala --- src/strip.vala | 16 ++++++++++------ 1 file changed, 10 insertions(+), 6 deletions(-) diff --git a/src/strip.vala b/src/strip.vala index 4e65238..c3fd8fc 100644 --- a/src/strip.vala +++ b/src/strip.vala @@ -969,17 +969,21 @@ public class Strip : GLib.Object { continue; } - + var ds = next_file.get_display_name(); if (next_file.get_file_type() != FileType.DIRECTORY) { - if (next_file.get_display_name()[0] == ',') { + + + if (ds[0] == ',') { continue; } // other files to ignore? - - this.scan_file(basepath + subpath , next_file.get_display_name()); + if (Regex.match_simple (".tgz$", ds)) { + continue; + } + this.scan_file(basepath + subpath , ds); if(this.has_replaced) { - this.report_state("After scanning %s/%s".printf(basepath + subpath , next_file.get_display_name())); + this.report_state("After scanning %s/%s".printf(basepath + subpath , ds)); } continue; } @@ -990,7 +994,7 @@ public class Strip : GLib.Object { - var ds = next_file.get_display_name(); + // not really needed?? - we are storing attachments in a seperate location now... if (ds[0] == '.') { next_file = null; -- 2.39.2