[Jifty-commit] r1018 - in jifty/trunk: lib/Jifty/Script

jifty-commit at lists.jifty.org jifty-commit at lists.jifty.org
Sun May 7 15:28:03 EDT 2006


Author: jesse
Date: Sun May  7 15:28:01 2006
New Revision: 1018

Modified:
   jifty/trunk/   (props changed)
   jifty/trunk/lib/Jifty/Script/Action.pm
   jifty/trunk/lib/Jifty/Script/Model.pm

Log:
 r13295 at hualien:  jesse | 2006-05-07 13:41:03 -0400
 * We were inconsistently using Jifty::Util::make_path as a subroutine. It's a class method.
   This could break the stub generators and tutorial.  Thanks to Sean E. Millichamp


Modified: jifty/trunk/lib/Jifty/Script/Action.pm
==============================================================================
--- jifty/trunk/lib/Jifty/Script/Action.pm	(original)
+++ jifty/trunk/lib/Jifty/Script/Action.pm	Sun May  7 15:28:01 2006
@@ -145,7 +145,7 @@
         my ($volume, $dir, $file) = File::Spec->splitpath($path);
 
         # Make sure the directories we need are there
-        Jifty::Util::make_path($dir);
+        Jifty::Util->make_path($dir);
 
         # If it already exists, bail
         if (-e $path and not $self->{force}) {

Modified: jifty/trunk/lib/Jifty/Script/Model.pm
==============================================================================
--- jifty/trunk/lib/Jifty/Script/Model.pm	(original)
+++ jifty/trunk/lib/Jifty/Script/Model.pm	Sun May  7 15:28:01 2006
@@ -148,7 +148,7 @@
         my ($volume, $dir, $file) = File::Spec->splitpath($path);
 
         # Make sure the directories we need are there
-	Jifty::Util::make_path($dir);
+	Jifty::Util->make_path($dir);
 
         # If it already exists, bail
         if (-e $path and not $self->{force}) {


More information about the Jifty-commit mailing list