From 27420ad2ee78caf1b1effc3eb27744ae2c288009 Mon Sep 17 00:00:00 2001 From: Mitchell Hashimoto Date: Mon, 10 Feb 2014 08:56:45 -0800 Subject: [PATCH] Remove website/ dir from gem [GH-2951] --- vagrant.gemspec | 1 + 1 file changed, 1 insertion(+) diff --git a/vagrant.gemspec b/vagrant.gemspec index 61cb630b5..32903bd61 100644 --- a/vagrant.gemspec +++ b/vagrant.gemspec @@ -39,6 +39,7 @@ Gem::Specification.new do |s| root_path = File.dirname(__FILE__) all_files = Dir.chdir(root_path) { Dir.glob("**/{*,.*}") } all_files.reject! { |file| [".", ".."].include?(File.basename(file)) } + all_files.reject! { |file| file.start_with?("website/") } gitignore_path = File.join(root_path, ".gitignore") gitignore = File.readlines(gitignore_path) gitignore.map! { |line| line.chomp.strip }