mirror of
https://github.com/git/git.git
synced 2024-11-20 16:14:02 +01: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:
parent
8bd867ee0e
commit
df4b3abc94
@ -1884,7 +1884,7 @@ sub req_annotate
|
||||
}
|
||||
|
||||
# done; get out of the tempdir
|
||||
cleanupWorkDir();
|
||||
cleanupWorkTree();
|
||||
|
||||
print "ok\n";
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user