move these plugins earlier
Jesse Luehrs [Mon, 6 Jun 2011 21:43:08 +0000 (16:43 -0500)]
inc/CheckDelta.pm
inc/GitUpToDate.pm

index 1025e78..1f0d962 100644 (file)
@@ -3,11 +3,13 @@ use Moose;
 
 use Path::Class;
 
-with 'Dist::Zilla::Role::BeforeRelease';
+with 'Dist::Zilla::Role::BeforeBuild';
 
-sub before_release {
+sub before_build {
     my $self = shift;
 
+    return unless $ENV{DZIL_RELEASING};
+
     my ($delta) = grep { $_->name eq 'lib/Moose/Manual/Delta.pod' }
                        @{ $self->zilla->files };
 
index 35020e7..2f6c9ea 100644 (file)
@@ -1,7 +1,7 @@
 package inc::GitUpToDate;
 use Moose;
 
-with 'Dist::Zilla::Role::BeforeRelease';
+with 'Dist::Zilla::Role::BeforeBuild';
 
 sub git {
     if (wantarray) {
@@ -14,9 +14,11 @@ sub git {
     }
 }
 
-sub before_release {
+sub before_build {
     my $self = shift;
 
+    return unless $ENV{DZIL_RELEASING};
+
     my $branch = git "symbolic-ref HEAD";
     die "Could not get the current branch"
         unless $branch;