[svn:parrot] r40457 - trunk/tools/dev
dukeleto at svn.parrot.org
dukeleto at svn.parrot.org
Sat Aug 8 17:39:59 UTC 2009
Author: dukeleto
Date: Sat Aug 8 17:39:57 2009
New Revision: 40457
URL: https://trac.parrot.org/parrot/changeset/40457
Log:
[tools] Fix mk_manifest_and_skip.pl so it doesn't bork the manifest when run under git-svn
Modified:
trunk/tools/dev/mk_manifest_and_skip.pl
Modified: trunk/tools/dev/mk_manifest_and_skip.pl
==============================================================================
--- trunk/tools/dev/mk_manifest_and_skip.pl Sat Aug 8 17:16:37 2009 (r40456)
+++ trunk/tools/dev/mk_manifest_and_skip.pl Sat Aug 8 17:39:57 2009 (r40457)
@@ -10,6 +10,12 @@
my $script = $0;
+if (-e '.git') {
+ print "Sorry, this script is not compatible with git-svn\n";
+ print "Patches Welcome!\n";
+ exit 1;
+}
+
my $mani = Parrot::Manifest->new( { script => $script, } );
my $manifest_lines_ref = $mani->prepare_manifest();
More information about the parrot-commits
mailing list