我正在使用 rvm 1.29.12。我想使用 unicorn 为我的 Rails 6.1.4 应用程序创建一个包装器,但似乎无法正确执行命令。我试过这个
$ rvm wrapper ruby-3.0.2 system unicorn
Ruby enVironment Manager 1.29.12 (manual) (c) 2009-2020 Michal Papis, Piotr Kuczynski, Wayne E. Seguin
# Wrapper
Show/regenerate wrappers.
NOTE: This command delegates to 'gem wrapper' => <https://github.com/rvm/gem-wrappers>
## Usage
Show paths and generated wrappers:
rvm wrapper show
Show path to generated wrapper:
rvm wrapper show executable_name
Where `executable_name` is something like `ruby` or `rake`.
It is also possible to generate a wrapper for external scripts that require ruby:
rvm wrapper /full/path/to/script
Where `/full/path/to/script` is full path to existing script
Wrappers are generated automatically, but it is possible to rerun the process:
rvm wrapper regenerate
Documentation:
rvm wrapper [help]
For additional documentation please visit https://rvm.io
但它似乎没有生成任何东西,因为正在运行
$ which system_unicorn
不产生任何东西。生成包装器还需要什么?