From 3584ffaf9e0f509c758ba31e5e6a8629f46e5239 Mon Sep 17 00:00:00 2001 From: Arvin Schnell Date: Mon, 7 Apr 2014 12:38:32 +0200 Subject: [PATCH] - ignore grub files --- snapper/Snapshot.cc | 3 +++ 1 file changed, 3 insertions(+) diff --git a/snapper/Snapshot.cc b/snapper/Snapshot.cc index 122f0b99..384777e7 100644 --- a/snapper/Snapshot.cc +++ b/snapper/Snapshot.cc @@ -182,6 +182,9 @@ namespace snapper vector infos = infos_dir.entries(); for (vector::const_iterator it1 = infos.begin(); it1 != infos.end(); ++it1) { + if (*it1 == "snapshot_submenu.cfg") + continue; + try { SDir info_dir(infos_dir, *it1); -- 2.47.3