getdave / Tanlinell

Boilerplate Wordpress theme for rapid development of new WP themes. Based on the great work of the _s ("Underscore") theme.
GNU General Public License v2.0
6 stars 2 forks source link

Grunt rsync ignore list update required #249

Closed getdave closed 10 years ago

getdave commented 10 years ago

Rsync was set (rightly) to ignore various W3TC files (advanced-cache.php...etc). This was because we didn't want these transferred between environments.

However w3Total Cache has it's own set of *-cache.php files within it's own plugin directly that are a critical part of it's makeup. Therefore the ignore list needs to be much more specific to ignore only those cache files in the wp-content or content directories.

Replace

// WordPress
                    'w3tc-config',
                    'advanced-cache.php',
                    'object-cache.php',

with...

'/wp-content/w3tc-config',
                    '/wp-content/advanced-cache.php',
                    '/wp-content/object-cache.php',
                    '/content/w3tc-config',
                    '/content/advanced-cache.php',
                    '/content/object-cache.php',
neilberry001 commented 10 years ago

Task should be performed on https://github.com/BurfieldCreative/bc-wordpress-base

getdave commented 10 years ago

Yes...sorry!

neilberry001 commented 10 years ago

Resolved via https://github.com/BurfieldCreative/bc-wordpress-base/releases/tag/0.6.9