[haiku-commits] haiku: hrev53252 - src/apps/installer

  • From: waddlesplash <waddlesplash@xxxxxxxxx>
  • To: haiku-commits@xxxxxxxxxxxxx
  • Date: Sat, 13 Jul 2019 15:55:21 -0400 (EDT)

hrev53252 adds 1 changeset to branch 'master'
old head: 39681c5c0f0bae606c5c3aa8f249e8410e931af4
new head: e06f64086224dda0e36704045448844f7376dafd
overview: 
https://git.haiku-os.org/haiku/log/?qt=range&q=e06f64086224+%5E39681c5c0f0b

----------------------------------------------------------------------------

e06f64086224: Installer: Ignore cache directories.
  
  Fixes #15145.

                              [ Augustin Cavalier <waddlesplash@xxxxxxxxx> ]

----------------------------------------------------------------------------

Revision:    hrev53252
Commit:      e06f64086224dda0e36704045448844f7376dafd
URL:         https://git.haiku-os.org/haiku/commit/?id=e06f64086224
Author:      Augustin Cavalier <waddlesplash@xxxxxxxxx>
Date:        Sat Jul 13 19:54:47 2019 UTC

Ticket:      https://dev.haiku-os.org/ticket/15145

----------------------------------------------------------------------------

1 file changed, 2 insertions(+)
src/apps/installer/WorkerThread.cpp | 2 ++

----------------------------------------------------------------------------

diff --git a/src/apps/installer/WorkerThread.cpp 
b/src/apps/installer/WorkerThread.cpp
index 9b59c33cc5..f1aa7badaa 100644
--- a/src/apps/installer/WorkerThread.cpp
+++ b/src/apps/installer/WorkerThread.cpp
@@ -97,6 +97,8 @@ public:
                        fIgnorePaths.insert("rr_moved");
                        fIgnorePaths.insert("boot.catalog");
                        fIgnorePaths.insert("haiku-boot-floppy.image");
+                       fIgnorePaths.insert("system/cache");
+                       fIgnorePaths.insert("home/config/cache");
                        fIgnorePaths.insert("system/var/swap");
                        fIgnorePaths.insert("system/var/shared_memory");
                        fIgnorePaths.insert("system/var/log/syslog");


Other related posts:

  • » [haiku-commits] haiku: hrev53252 - src/apps/installer - waddlesplash