You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@steve.apache.org by ji...@apache.org on 2014/05/26 20:35:17 UTC

svn commit: r1597624 - in /steve/trunk/cmdline: check_quorum.pl close_issue.pl votegroup.pl

Author: jim
Date: Mon May 26 18:35:16 2014
New Revision: 1597624

URL: http://svn.apache.org/r1597624
Log:
ensure we find steve.pm

Modified:
    steve/trunk/cmdline/check_quorum.pl
    steve/trunk/cmdline/close_issue.pl
    steve/trunk/cmdline/votegroup.pl

Modified: steve/trunk/cmdline/check_quorum.pl
URL: http://svn.apache.org/viewvc/steve/trunk/cmdline/check_quorum.pl?rev=1597624&r1=1597623&r2=1597624&view=diff
==============================================================================
--- steve/trunk/cmdline/check_quorum.pl (original)
+++ steve/trunk/cmdline/check_quorum.pl Mon May 26 18:35:16 2014
@@ -31,6 +31,10 @@
 # Originally created by Roy Fielding
 #
 
+BEGIN {
+    unshift @INC, "/home/voter/bin";
+}
+
 use steve;
 
 umask(0077);

Modified: steve/trunk/cmdline/close_issue.pl
URL: http://svn.apache.org/viewvc/steve/trunk/cmdline/close_issue.pl?rev=1597624&r1=1597623&r2=1597624&view=diff
==============================================================================
--- steve/trunk/cmdline/close_issue.pl (original)
+++ steve/trunk/cmdline/close_issue.pl Mon May 26 18:35:16 2014
@@ -27,6 +27,10 @@
 # Originally created by Roy Fielding
 #
 
+BEGIN {
+    unshift @INC, "/home/voter/bin";
+}
+
 use steve;
 
 umask(0077);

Modified: steve/trunk/cmdline/votegroup.pl
URL: http://svn.apache.org/viewvc/steve/trunk/cmdline/votegroup.pl?rev=1597624&r1=1597623&r2=1597624&view=diff
==============================================================================
--- steve/trunk/cmdline/votegroup.pl (original)
+++ steve/trunk/cmdline/votegroup.pl Mon May 26 18:35:16 2014
@@ -25,6 +25,10 @@
 #
 # Originally created by Roy Fielding
 #
+BEGIN {
+    unshift @INC, "/home/voter/bin";
+}
+
 require "getopts.pl";
 use steve;
 
@@ -170,4 +174,4 @@ $pf =~ s/^$homedir\///o;
 print &hash_file($votersfile), ': ', $pf, "\n";
 
 exit(0);
-
+z



Re: svn commit: r1597624 - in /steve/trunk/cmdline: check_quorum.pl close_issue.pl votegroup.pl

Posted by Greg Stein <gs...@gmail.com>.
On Mon, May 26, 2014 at 1:35 PM, <ji...@apache.org> wrote:
>...

> Modified: steve/trunk/cmdline/votegroup.pl
> URL:
> http://svn.apache.org/viewvc/steve/trunk/cmdline/votegroup.pl?rev=1597624&r1=1597623&r2=1597624&view=diff
>
> ==============================================================================
> --- steve/trunk/cmdline/votegroup.pl (original)
> +++ steve/trunk/cmdline/votegroup.pl Mon May 26 18:35:16 2014
> @@ -25,6 +25,10 @@
>  #
>  # Originally created by Roy Fielding
>  #
> +BEGIN {
> +    unshift @INC, "/home/voter/bin";
> +}
> +
>  require "getopts.pl";
>  use steve;
>
> @@ -170,4 +174,4 @@ $pf =~ s/^$homedir\///o;
>  print &hash_file($votersfile), ': ', $pf, "\n";
>
>  exit(0);
> -
> +z
>

hm? I assume that 'z' is stray?