Need full pathname for CVS_PASSFILE, since change directories before using cvs.

This commit is contained in:
terry%netscape.com 1998-08-29 00:41:24 +00:00
Родитель 29ace2903c
Коммит 773132fb8a
1 изменённых файлов: 3 добавлений и 1 удалений

Просмотреть файл

@ -66,7 +66,9 @@ if ($hostname ne "lounge.mozilla.org") {
$ENV{"HOME"} = glob("~$mylogin"); # CVS wants this.
$ENV{"CVS_PASSFILE"} = "./.cvspass";
$curdir = `pwd`;
chop($curdir);
$ENV{"CVS_PASSFILE"} = "$curdir/.cvspass";
if ($usertoblame eq "") {
$usertoblame = $mylogin;