diff --git a/scripts_combine.rb b/scripts_combine.rb index 2f3e49df6..3710c46a2 100644 --- a/scripts_combine.rb +++ b/scripts_combine.rb @@ -110,7 +110,7 @@ module Scripts files.sort! files.each do |f| section_name = filename_to_title(f) - content = File.open(path + "/" + f, "rb") { |f2| f2.read }.gsub(/\n/, "\r\n") + content = File.open(path + "/" + f, "rb") { |f2| f2.read }#.gsub(/\n/, "\r\n") scripts << [rand(999_999), section_name, Zlib::Deflate.deflate(content)] end # Check each subfolder for scripts to aggregate diff --git a/scripts_extract.rb b/scripts_extract.rb index 15668f70c..51c43d961 100644 --- a/scripts_extract.rb +++ b/scripts_extract.rb @@ -110,7 +110,7 @@ module Scripts files.sort! files.each do |f| section_name = filename_to_title(f) - content = File.open(path + "/" + f, "rb") { |f2| f2.read }.gsub(/\n/, "\r\n") + content = File.open(path + "/" + f, "rb") { |f2| f2.read }#.gsub(/\n/, "\r\n") scripts << [rand(999_999), section_name, Zlib::Deflate.deflate(content)] end # Check each subfolder for scripts to aggregate