Add another line to the resplat regex.

bug/bundler_fix
Tod Beardsley 2013-10-15 14:06:53 -05:00
parent 81d145ad81
commit 01fbbf16de
No known key found for this signature in database
GPG Key ID: 1EFFB682ADB9F193
1 changed files with 2 additions and 2 deletions

View File

@ -32,7 +32,7 @@ end
def resplat(line)
if line =~ /This file is part of the Metasploit Framework/
return "# This module requires Metasploit: http//metasploit.com/download\n"
elsif line =~ /redistribution and commercial/
elsif line =~ /# redistribution and commercial restrictions\./
return "# Current source: https://github.com/rapid7/metasploit-framework\n"
else
return nil
@ -49,7 +49,7 @@ Find.find(dir) do |infile|
fixed = []
data.each_line do |line|
case line
when /^[\x20\x09]*# This file is part of the Metasploit Framework and may be subject to/, /^[\x20\x09]*# redistribution and commercial restrictions\. Please see the Metasploit/, /^[\x20\x09]*# web site for more information on licensing and terms of use\./, /^[\x20\x09]*# http:\/\/metasploit.com\//
when /^[\x20\x09]*# This file is part of the Metasploit Framework and may be subject to/, /^[\x20\x09]*# redistribution and commercial restrictions\. Please see the Metasploit/, /^[\x20\x09]*# web site for more information on licensing and terms of use\./, /^[\x20\x09]*# http:\/\/metasploit.com\//, /# Framework web site for more information on licensing and terms of use./
new_line = resplat(line)
fixed << new_line if new_line
else