Author: jkeenan
Date: Fri Mar 2 17:33:31 2007
New Revision: 17293
Modified:
branches/buildtools/tools/util/svn_synch.pl
Log:
Correct error: change croak to die througout. One POD correction.
Modified: branches/buildtools/tools/util/svn_synch.pl
==============================================================================
--- branches/buildtools/tools/util/svn_synch.pl (original)
+++ branches/buildtools/tools/util/svn_synch.pl Fri Mar 2 17:33:31 2007
@@ -15,9 +15,9 @@
"branch=s" => \$branch,
"sandbox=s" => \$sandbox,
);
-croak "Must supply name of branch you are working with to '--branch' option"
+die "Must supply name of branch you are working with to '--branch' option"
unless $branch;
-croak "Must supply absolute path to your sandbox directory to '--sandbox'
option"
+die "Must supply absolute path to your sandbox directory to '--sandbox' option"
unless $sandbox;
synch_branch_to_trunk( {
@@ -39,7 +39,7 @@
From the top-level directory in your Parrot sandbox:
- tools/util/svn_synch.pl \
+ perl tools/util/svn_synch.pl \
--branch=my_branch_name \
--sandbox=/home/username/path/to/parrot/sandbox