diff options
Diffstat (limited to '')
| -rwxr-xr-x | scripts/build | 4 | 
1 files changed, 3 insertions, 1 deletions
| diff --git a/scripts/build b/scripts/build index 4a36bbac..69993374 100755 --- a/scripts/build +++ b/scripts/build @@ -175,7 +175,9 @@ def copy_file(package, src, dest)        else          output << "if !exists('g:polyglot_disabled') || index(g:polyglot_disabled, '#{name}') == -1\n\n"        end -      IO.copy_stream(input, output) +      contents = File.read(input) +      contents.gsub!(' ..= ', ' .= ') +      output << contents        output << "\nendif\n"      end    end | 
