diff options
author | Johannes Schindelin <Johannes.Schindelin@gmx.de> | 2007-10-15 23:32:45 +0100 |
---|---|---|
committer | Shawn O. Pearce <spearce@spearce.org> | 2007-10-16 01:19:25 -0400 |
commit | 9de6d079200a50c0a61a5489e74419cb73993184 (patch) | |
tree | 87bf4f0eeded7bc40d9b8e38533cf6edd7a1a567 /git-cvsexportcommit.perl | |
parent | ff9054627c40082ad4a1cf16afebb140fcda41a2 (diff) | |
download | git-9de6d079200a50c0a61a5489e74419cb73993184.tar.gz |
cvsexportcommit: get rid of temporary directory
Since commit e86ad71fe5f53ae4434566bd09ea4256090e5a3a we do not use
a temporary directory in cvsexportcommit. So there is no need to set
one up.
Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
Signed-off-by: Shawn O. Pearce <spearce@spearce.org>
Diffstat (limited to 'git-cvsexportcommit.perl')
-rwxr-xr-x | git-cvsexportcommit.perl | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/git-cvsexportcommit.perl b/git-cvsexportcommit.perl index a33fa8d4c8..6b0123c75f 100755 --- a/git-cvsexportcommit.perl +++ b/git-cvsexportcommit.perl @@ -30,11 +30,6 @@ if ($opt_d) { @cvs = ('cvs'); } -# setup a tempdir -our ($tmpdir, $tmpdirname) = tempdir('git-cvsapplycommit-XXXXXX', - TMPDIR => 1, - CLEANUP => 1); - # resolve target commit my $commit; $commit = pop @ARGV; |