抑制目录消息中的 rake

发布于 2024-08-08 05:16:41 字数 317 浏览 2 评论 0原文

当我运行 rake 时,它​​总是以如下消息开头:

> rake
(in /Users/peter/srcdir)
... standard output here ...

我想删除 (in /Users/peter/srcdir) 部分。您可以使用 rake -s 来完成此操作,但随后您将无法获得所需的输出。

有没有办法禁用当前目录公告而不禁用其余目录?理想的情况是像 ~/.rakerc 这样的配置文件,或者是 Rakefile 本身的一个选项。

When I run rake, it always starts with a message like this:

> rake
(in /Users/peter/srcdir)
... standard output here ...

I'd like to remove the (in /Users/peter/srcdir) portion. You can do it with rake -s, but then you don't get the output you want.

Is there any way to disable this current directory announcement but not the rest? Ideal would be some configuration file like ~/.rakerc, or an option in the Rakefile itself.

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

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

发布评论

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

评论(1

未央 2024-08-15 05:16:41

看起来不像 - 的第 475 行application.rb

puts "(in #{Dir.pwd})" unless options.silent

您可以尝试在邮件列表。

Doesn't look like it -- Line 475 of application.rb:

puts "(in #{Dir.pwd})" unless options.silent

You could try requesting it on the mailing list.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文