diff options
Diffstat (limited to 'tool')
| -rwxr-xr-x | tool/make-snapshot | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/tool/make-snapshot b/tool/make-snapshot index b2081f615..0f0a31fb3 100755 --- a/tool/make-snapshot +++ b/tool/make-snapshot @@ -1,5 +1,5 @@ #!/usr/bin/ruby -s -# -*- coding: US-ASCII -*- +# -*- encoding: us-ascii -*- require 'uri' require 'digest/md5' require 'digest/sha2' @@ -21,6 +21,11 @@ ENV["RUBY"] ||= "ruby" ENV["MV"] ||= "mv" ENV["MINIRUBY"] ||= "ruby" +class String + # for older ruby + alias bytesize size unless method_defined?(:bytesize) +end + $patch_file &&= File.expand_path($patch_file) path = ENV["PATH"].split(File::PATH_SEPARATOR) %w[YACC BASERUBY RUBY MV MINIRUBY].each do |var| |
