diff options
author | Junio C Hamano <gitster@pobox.com> | 2008-04-29 22:55:07 -0700 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2008-04-29 22:55:07 -0700 |
commit | 30c0312fd182942c10421e77d2b3ec6284cc0468 (patch) | |
tree | e72fda2a27115091cdb6352ebfaf1302dd814a7c /git-cvsimport.perl | |
parent | 7b7f39eae6ab0bbcc68d3c42a5b23595880e528f (diff) | |
parent | b3bb5f76e6193db102b063187be854ef3842d89b (diff) | |
download | git-30c0312fd182942c10421e77d2b3ec6284cc0468.tar.gz git-30c0312fd182942c10421e77d2b3ec6284cc0468.tar.xz |
Merge branch 'maint-1.5.4' into maint
* maint-1.5.4:
cvsimport: always pass user data to "system" as a list
fix reflog approxidate parsing bug
Diffstat (limited to 'git-cvsimport.perl')
-rwxr-xr-x | git-cvsimport.perl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/git-cvsimport.perl b/git-cvsimport.perl index 95c5eec51..bdac5d51b 100755 --- a/git-cvsimport.perl +++ b/git-cvsimport.perl @@ -772,7 +772,7 @@ sub commit { waitpid($pid,0); die "Error running git-commit-tree: $?\n" if $?; - system("git-update-ref $remote/$branch $cid") == 0 + system('git-update-ref', "$remote/$branch", $cid) == 0 or die "Cannot write branch $branch for update: $!\n"; if ($tag) { |