1
0
Fork 0
mirror of https://github.com/git/git.git synced 2024-05-06 12:16:14 +02:00

git-cvsserver: fix call to nonexistant cleanupWorkDir()

git-cvsserver.perl contained a single call to a nonexistant function
cleanupWorkDir(). This was obviously a typo for cleanupWorkTree().

Signed-off-by: Lars Noschinski <lars@public.noschinski.de>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
This commit is contained in:
Lars Noschinski 2008-07-16 13:35:46 +02:00 committed by Junio C Hamano
parent 8bd867ee0e
commit df4b3abc94

View File

@ -1884,7 +1884,7 @@ sub req_annotate
}
# done; get out of the tempdir
cleanupWorkDir();
cleanupWorkTree();
print "ok\n";