Include vendored go libs

This commit is contained in:
sophia 2021-04-06 17:33:53 -05:00 committed by Paul Hinze
parent c1ce1016c7
commit aff0fa9494
No known key found for this signature in database
GPG Key ID: B69DEDF2D55501C0

View File

@ -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 }