From aff0fa949455bd96e18e43c6f8cff84d84b06362 Mon Sep 17 00:00:00 2001 From: sophia Date: Tue, 6 Apr 2021 17:33:53 -0500 Subject: [PATCH] Include vendored go libs --- vagrant.gemspec | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/vagrant.gemspec b/vagrant.gemspec index 2282d5ec0..448aef647 100644 --- a/vagrant.gemspec +++ b/vagrant.gemspec @@ -55,7 +55,11 @@ Gem::Specification.new do |s| all_files.reject! { |file| [".", ".."].include?(File.basename(file)) } all_files.reject! { |file| file.start_with?("website/") } all_files.reject! { |file| file.start_with?("test/") } - + all_files.reject! { |file| file.start_with?("cmd/") } + all_files.reject! { |file| file.start_with?("builtin/") } + all_files.reject! { |file| file.start_with?("internal/") } + all_files.reject! { |file| file.start_with?("vendor/") } + gitignore_path = File.join(root_path, ".gitignore") gitignore = File.readlines(gitignore_path) gitignore.map! { |line| line.chomp.strip }