From ba6846f883a41ed1ee8a79a036ba091d4b1fb9cb Mon Sep 17 00:00:00 2001 From: Michael Orlitzky Date: Tue, 12 Jun 2012 21:51:41 -0400 Subject: [PATCH] Fix a missing slash. --- lib/whatever-dl.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/whatever-dl.rb b/lib/whatever-dl.rb index b32cefb..f3b8907 100644 --- a/lib/whatever-dl.rb +++ b/lib/whatever-dl.rb @@ -34,7 +34,7 @@ my_path = Pathname.new(__FILE__).realpath.to_s # The Dir.glob that's coming up doesn't use the # Ruby library path so we need to tell it where to # look explicitly. -websites_pattern = File.dirname(my_path) + 'whatever-dl/websites/*.rb' +websites_pattern = File.dirname(my_path) + '/whatever-dl/websites/*.rb' # All of the website classes are located in one # directory, so we can 'require' them automatically. -- 2.43.2