The .gitignore already tried to ignore plugin migrations, but assumed a double underscore that we weren't using anywhere that dealt with plugin migrations. Fixed that.
Also added ignore lines for javascript, css and sass files now that plugins can copy those into the public directory. Paired-with: Josh Cooper <[email protected]> Signed-off-by: Matt Robinson <[email protected]> --- Local-branch: ticket/master/8090-git_ignore_plugin_files .gitignore | 5 ++++- 1 files changed, 4 insertions(+), 1 deletions(-) diff --git a/.gitignore b/.gitignore index 24688df..cc8a07c 100644 --- a/.gitignore +++ b/.gitignore @@ -21,6 +21,9 @@ log/*.log* log/*.pid public/javascripts/all.js public/stylesheets/all.css +public/javascripts/plugin-* +public/stylesheets/plugin-* +public/stylesheets/sass/plugin-* spec/rcov.opts spec/spec.opts spec/watchr.rb @@ -30,5 +33,5 @@ results/* certs vendor/plugins/puppet_* db/schema.rb -db/migrate/*_plugin__*.rb +db/migrate/*_plugin_*.rb config/installed_plugins -- 1.7.3.1 -- You received this message because you are subscribed to the Google Groups "Puppet Developers" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/puppet-dev?hl=en.
