svn_load_dirs.pl 中的 Perl 错误

发布于 2024-10-25 08:34:44 字数 254 浏览 1 评论 0原文

我想使用 svn_load_dirs.pl 脚本管理 svn 中的供应商分支。

当我在 Mac OS X 10.5、为 darwin-multi-2level 构建的 perl v5.10.1 (*) 上执行此脚本时 我收到以下错误消息:

参数“2.07_02”在 /usr/local/bin/svn_load_dirs 第 22 行的子例程条目中不是数字。

这是什么意思?这是否有害?

I want to manage vendor branches in svn using the svn_load_dirs.pl script.

When I execute this script on my Mac OS X 10.5, perl v5.10.1 (*) built for darwin-multi-2level
I get he following error message:

Argument "2.07_02" isn't numeric in subroutine entry at /usr/local/bin/svn_load_dirs line 22.

What does this mean and is this harmful?

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

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

发布评论

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

评论(1

此刻的回忆 2024-11-01 08:34:44

要了解 Perl 消息,您可以在 perldoc perldiag 中查找它们:

参数“%s”不是数字%s

(W 数字)指示的字符串是
作为参数提供给运算符
而是期望一个数值。

由于此消息被归类为警告,因此可能无害。但是,值得研究一下。由于我无权访问 svn_load_dirs.pl 脚本,您能否用脚本的第 1 22 行更新您的问题?

To understand Perl messages, you can look them up in perldoc perldiag:

Argument "%s" isn't numeric%s

(W numeric) The indicated string was
fed as an argument to an operator that
expected a numeric value instead.

Since this message is classified as a Warning, it may not be harmful. But, it is worth investigating. Since I do not have access to the svn_load_dirs.pl script, could you please update your Question with the 1st 22 lines of the script?

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