diff --git a/maven-meeper/src/bin/synchronize/syncopate/sync b/maven-meeper/src/bin/synchronize/syncopate/sync
index af682fbe6..204dfbd40 100755
--- a/maven-meeper/src/bin/synchronize/syncopate/sync
+++ b/maven-meeper/src/bin/synchronize/syncopate/sync
@@ -179,18 +179,22 @@ sub runRsync()
if ( /^artifact/ )
{
my @details = split;
-
- print REPORT "
" . "\n";
-
- print REPORT "" . $details[1] . " | " . "\n";
-
- print REPORT "" . $details[2] . " | " . "\n";
-
- print REPORT "" . $details[3] . " " . $details[4] . " | " . "\n";
-
- print REPORT "
" . "\n";
- $sendMail = 1;
+ # TODO: fix hardcoding
+ if ( ! ( $details[1] eq "home/maven/repository-staging/to-ibiblio/maven/." ) )
+ {
+ print REPORT "" . "\n";
+
+ print REPORT "" . $details[1] . " | " . "\n";
+
+ print REPORT "" . $details[2] . " | " . "\n";
+
+ print REPORT "" . $details[3] . " " . $details[4] . " | " . "\n";
+
+ print REPORT "
" . "\n";
+
+ $sendMail = 1;
+ }
}
else
{