为什么只有第一个“耙子”?命令是在批处理文件中执行的吗?
我在 Windows 上创建了 reset_db.bat
,内容如下:
rake db:drop RAILS_ENV=development
rake db:create
rake db:migrate
rake db:seed
当我键入 reset_db
时,仅执行第一个命令 (drop
)。为什么 ?
I created reset_db.bat
on Windows with the following content:
rake db:drop RAILS_ENV=development
rake db:create
rake db:migrate
rake db:seed
When I type reset_db
only the first command (drop
) is executed. Why ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我假设 rake 也是一个 .bat 文件。
然后你只需要在它前面加上一个电话
I assume that the rake is also a .bat file.
Then you only have to prepend it with a call