[Pkg-xfce-commits] r2815 - scripts
sargentd-guest at alioth.debian.org
sargentd-guest at alioth.debian.org
Sat Feb 28 13:01:29 UTC 2009
Author: sargentd-guest
Date: 2009-02-28 13:01:29 +0000 (Sat, 28 Feb 2009)
New Revision: 2815
Modified:
scripts/get-sources.pl
Log:
skipp dummy packages while downloading
Modified: scripts/get-sources.pl
===================================================================
--- scripts/get-sources.pl 2009-02-28 13:01:23 UTC (rev 2814)
+++ scripts/get-sources.pl 2009-02-28 13:01:29 UTC (rev 2815)
@@ -42,6 +42,10 @@
chop;
my ($pkg, $tarball) = split;
! -d "$debian_dirs/$pkg" and next;
+ if ($tarball =~ /^DUMMY$/i) {
+ print "W: $pkg is a DUMMY package. Skipping\n";
+ next;
+ }
my $wget_command = "";
my $filename = basename($tarball);
More information about the Pkg-xfce-commits
mailing list