Skip to content

Commit

Permalink
Merge pull request #12 from sul-dlss/jcoyne-patch-1
Browse files Browse the repository at this point in the history
Fix typo
  • Loading branch information
jcoyne committed May 16, 2019
2 parents 6f6f674 + 2140d10 commit 6058f8f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/druid_tools/druid.rb
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ def find_filelist_parent(type, filelist)
found_dir = directories.find { |pathname| pathname.join(filelist[0]).exist? }
raise "#{type} dir not found for '#{filelist[0]}' when searching '#{search_dir}'" if found_dir.nil?
filelist.each do |filename|
raise "File '#{filename}' not found in #{type} dir s'#{found_dir}'" unless found_dir.join(filename).exist?
raise "File '#{filename}' not found in #{type} dir '#{found_dir}'" unless found_dir.join(filename).exist?
end
found_dir
end
Expand Down

0 comments on commit 6058f8f

Please sign in to comment.