summaryrefslogtreecommitdiff
path: root/tool
diff options
context:
space:
mode:
Diffstat (limited to 'tool')
-rwxr-xr-xtool/enc-unicode.rb6
1 files changed, 3 insertions, 3 deletions
diff --git a/tool/enc-unicode.rb b/tool/enc-unicode.rb
index 222573b3a8..50fa07e7c9 100755
--- a/tool/enc-unicode.rb
+++ b/tool/enc-unicode.rb
@@ -14,8 +14,8 @@ if ARGV[0] == "--header"
header = true
ARGV.shift
end
-unless ARGV.size == 1
- abort "Usage: #{$0} data_directory"
+unless ARGV.size == 2
+ abort "Usage: #{$0} data_directory emoji_data_directory"
end
$unicode_version = File.basename(ARGV[0])[/\A[.\d]+\z/]
@@ -302,7 +302,7 @@ def constantize_blockname(name)
end
def get_file(name)
- File.join(ARGV[0], name)
+ File.join(ARGV[name.start_with?("emoji-") ? 1 : 0], name)
end
def data_foreach(name, &block)