Skip to content

Commit 86b0091

Browse files
author
Kimmo Lehto
committed
Fix openssl-dir param
1 parent 349fc2e commit 86b0091

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

bin/rubyc

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/usr/bin/env ruby
22

33
# Copyright (c) 2017 Minqi Pan <[email protected]>
4-
#
4+
#
55
# This file is part of Ruby Compiler, distributed under the MIT License
66
# For full terms see the included LICENSE file
77

@@ -29,13 +29,13 @@ Examples
2929
Producing a single Ruby interpreter executable:
3030
rubyc
3131
./a.out (or a.exe on Windows)
32-
32+
3333
Compiling a CLI tool:
3434
git clone --depth 1 https://github.com/pmq20/ruby-compiler.git
3535
cd ruby-compiler
3636
rubyc bin/rubyc
3737
./a.out (or a.exe on Windows)
38-
38+
3939
Compiling a Rails application:
4040
rails new yours
4141
cd yours
@@ -79,7 +79,7 @@ OptionParser.new do |opts|
7979
options[:keep_tmpdir] = true
8080
end
8181

82-
opts.on("--openssl-dir", "The path to openssl") do |dir|
82+
opts.on("--openssl-dir=DIR", "The path to openssl") do |dir|
8383
options[:openssl_dir] = dir
8484
end
8585

0 commit comments

Comments
 (0)