[Debtags-commits] [svn] r1538 - tagdb
Enrico Zini
enrico at costa.debian.org
Mon Feb 6 22:53:11 UTC 2006
Author: enrico
Date: Mon Feb 6 22:53:10 2006
New Revision: 1538
Modified:
tagdb/runonetag
tagdb/stattags
Log:
Fixed file name
Modified: tagdb/runonetag
==============================================================================
--- tagdb/runonetag (original)
+++ tagdb/runonetag Mon Feb 6 22:53:10 2006
@@ -1,6 +1,6 @@
#!/bin/bash -e
-# debtags-ai - Approve a patch one change at a time
+# runonetag - Approve a patch one change at a time
#
# Copyright (C) 2005 Enrico Zini <enrico at debian.org>
#
Modified: tagdb/stattags
==============================================================================
--- tagdb/stattags (original)
+++ tagdb/stattags Mon Feb 6 22:53:10 2006
@@ -3,7 +3,9 @@
use strict;
use warnings;
-open IN, "tagcoll reverse patch | tagcoll copy -x |" or die "Can't get the reverse collection from the patch";
+my $patchfile = (shift @ARGV or 'patch');
+
+open IN, "tagcoll reverse $patchfile | tagcoll copy -x |" or die "Can't get the reverse collection from the patch";
while (<IN>)
{
More information about the Debtags-commits
mailing list