Skip to content

Commit

Permalink
fix ci not being copied
Browse files Browse the repository at this point in the history
  • Loading branch information
grosser committed Sep 27, 2024
1 parent 7869144 commit fa8a283
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion copy.rb
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
SETTINGS = YAML.load_file("#{here}/.copy.yml")

# copy files
files_to_copy = Dir["#{here}/**/**"] + ["#{here}/.rubocop.yml"] - ["#{here}/copy.rb", "#{here}/Gemfile.lock"]
files_to_copy = Dir["#{here}/**/**"] + ["#{here}/.rubocop.yml"] + Dir["#{here}/.github/**/**"] - ["#{here}/copy.rb", "#{here}/Gemfile.lock"]
files_to_copy.reject! { |f| File.directory?(f) || f.include?("/vendor/") }

files_to_copy.each do |file_to_copy|
Expand Down

0 comments on commit fa8a283

Please sign in to comment.