Rakefile in louis-2.2.3 vs Rakefile in louis-2.2.4

- old
+ new

@@ -11,10 +11,10 @@ desc 'Download the latest copy of the wireshark manufacturers database' task :update_wireshark => [:environment] do require 'net/http' begin - new_file = Net::HTTP.get(URI('https://code.wireshark.org/review/gitweb?p=wireshark.git;a=blob_plain;f=manuf')) + new_file = Net::HTTP.get(URI('https://gitlab.com/wireshark/wireshark/raw/master/manuf')) File.write(Louis::ORIGINAL_OUI_FILE, new_file) puts 'Update complete' rescue => err puts "An error occurred while downloading the file: #{err.class} -> #{err.message}" end