summaryrefslogtreecommitdiff
path: root/bin/ChangeLogEditor
diff options
context:
space:
mode:
authorJames H. Hill <hilljh82@gmail.com>2006-06-20 12:57:14 +0000
committerJames H. Hill <hilljh82@gmail.com>2006-06-20 12:57:14 +0000
commitfb8720c13fd5c08ed4246779bfe6845b67e2cd81 (patch)
tree12f77e052e792cbcbf3a1e2004040e73b7b38f21 /bin/ChangeLogEditor
parente993f220657063f41e87cd10e812b784e50357fb (diff)
downloadATCD-fb8720c13fd5c08ed4246779bfe6845b67e2cd81.tar.gz
Tue Jun 20 12:51:19 UTC 2006 James H. Hill <hillj@isis.vanderbilt.edu>
Diffstat (limited to 'bin/ChangeLogEditor')
-rw-r--r--bin/ChangeLogEditor/FileLocatorFactory.pm3
1 files changed, 2 insertions, 1 deletions
diff --git a/bin/ChangeLogEditor/FileLocatorFactory.pm b/bin/ChangeLogEditor/FileLocatorFactory.pm
index bbd4652cdc3..7b9ba382ebd 100644
--- a/bin/ChangeLogEditor/FileLocatorFactory.pm
+++ b/bin/ChangeLogEditor/FileLocatorFactory.pm
@@ -22,7 +22,8 @@ use SVNFileLocator;
sub create {
switch: {
-d 'CVS' && do { return new CVSFileLocator(); };
- -d '.svn' && do { return new SVNFileLocator(); };
+ ((defined $ENV{SVN_ASP_DOT_NET_HACK} && -d '_svn') || -d '.svn')
+ && do { return new SVNFileLocator(); };
print STDERR "WARNING: Unsupported revision control protocol\n";
}