From 22e2a9d2bfdc3dfd358bfa0d4e1868e0527d6687 Mon Sep 17 00:00:00 2001 From: "terry%netscape.com" Date: Sat, 29 Aug 1998 00:41:24 +0000 Subject: [PATCH] Need full pathname for CVS_PASSFILE, since change directories before using cvs. git-svn-id: svn://10.0.0.236/trunk@8772 18797224-902f-48f8-a5cc-f745e15eee43 --- mozilla/webtools/despot/syncit.pl | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/mozilla/webtools/despot/syncit.pl b/mozilla/webtools/despot/syncit.pl index ac1a5297ed6..f2590f017c7 100755 --- a/mozilla/webtools/despot/syncit.pl +++ b/mozilla/webtools/despot/syncit.pl @@ -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;