summaryrefslogtreecommitdiff
path: root/bin
diff options
context:
space:
mode:
authorelliott_c <ocielliottc@users.noreply.github.com>2002-12-12 12:18:29 +0000
committerelliott_c <ocielliottc@users.noreply.github.com>2002-12-12 12:18:29 +0000
commit04bd778ab98b736a7277ab623f0a41daf3317425 (patch)
treeb9d58477b5736deaaaf8cadd7517c97a9c8b5139 /bin
parentff8104852b37feb192896b469cfa11a20771a46a (diff)
downloadATCD-04bd778ab98b736a7277ab623f0a41daf3317425.tar.gz
ChangeLogTag: Thu Dec 12 06:18:02 2002 Chad Elliott <elliott_c@ociweb.com>
Diffstat (limited to 'bin')
-rw-r--r--bin/MakeProjectCreator/modules/Parser.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/MakeProjectCreator/modules/Parser.pm b/bin/MakeProjectCreator/modules/Parser.pm
index 7040b1f8652..40f46ec8034 100644
--- a/bin/MakeProjectCreator/modules/Parser.pm
+++ b/bin/MakeProjectCreator/modules/Parser.pm
@@ -31,7 +31,7 @@ sub cd {
my($self) = shift;
my($dir) = shift;
my($status) = chdir($dir);
- if ($status) {
+ if ($status && $dir ne '.') {
if ($dir =~ /^\// || $dir =~ /^[A-Za-z]:/) {
$cwd = $dir;
}