为什么从 cmd 文件调用 gem.bat 在第一次调用后会退出?

发布于 2024-10-15 06:46:06 字数 163 浏览 0 评论 0原文

我在 Windows .cmd 文件中调用 gem 命令,但它在第一个命令后退出。什么给?

gem sources --add http://gems.github.com 
gem install haml

I'm calling gem commands in a Windows .cmd file, but it exits after the first command. What gives?

gem sources --add http://gems.github.com 
gem install haml

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

森林很绿却致人迷途 2024-10-22 06:46:06

gem 命令实际上是 PATH 中的一个批处理文件。例如,C:\Ruby192\bin\gem.bat。从批处理/cmd 文件中调用这样的批处理文件会在调用的批处理文件末尾自动退出整个会话。有一个特殊的命令可以返回调用batch/cmd 文件。在每次调用另一个批处理文件之前使用 CALL 命令。

CALL gem sources --add http://gems.github.com
CALL gem install haml

The gem command is actually a batch file in your PATH. For example, C:\Ruby192\bin\gem.bat. Calling a batch file like this from a batch/cmd file automatically exits the entire session at the end of the called batch file. There is a special command that returns to the calling batch/cmd file. Use the CALL command before every call to another batch file.

CALL gem sources --add http://gems.github.com
CALL gem install haml
驱逐舰岛风号 2024-10-22 06:46:06

我通过 cmd.exe 调用第一个 gem 命令解决了这个问题,但我仍然渴望听到关于正在发生的事情的解释。

cmd.exe /c gem sources --add http://gems.github.com   
gem install haml 

I solved it by calling the first gem command through cmd.exe, but I'm still keen to hear explanations of what is going on.

cmd.exe /c gem sources --add http://gems.github.com   
gem install haml 
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文