diff options
author | René Scharfe <rene.scharfe@lsrfire.ath.cx> | 2007-04-05 22:55:43 +0200 |
---|---|---|
committer | Junio C Hamano <junkio@cox.net> | 2007-04-05 14:10:10 -0700 |
commit | 265d528032e55c48798266c538d3e6338cb1e2b6 (patch) | |
tree | 5bc341347905668fc3f6bd673a6875ef8a009497 /builtin-archive.c | |
parent | 5850cb645d3ca44c3bc014f92672dae6394c0315 (diff) | |
download | git-265d528032e55c48798266c538d3e6338cb1e2b6.tar.gz |
Revert "builtin-archive: use RUN_SETUP"
Commit 64edf4b2 cleaned up the initialization of git-archive,
at the cost of 'git-archive --list' now requiring a git repo.
This patch reverts the cleanup and documents the requirement
for this particular dirtyness in a test.
Signed-off-by: Rene Scharfe <rene.scharfe@lsrfire.ath.cx>
Signed-off-by: Junio C Hamano <junkio@cox.net>
Diffstat (limited to 'builtin-archive.c')
-rw-r--r-- | builtin-archive.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/builtin-archive.c b/builtin-archive.c index 2fae885f5c..8ea6cb1efc 100644 --- a/builtin-archive.c +++ b/builtin-archive.c @@ -252,6 +252,8 @@ int cmd_archive(int argc, const char **argv, const char *prefix) memset(&ar, 0, sizeof(ar)); tree_idx = parse_archive_args(argc, argv, &ar); + if (prefix == NULL) + prefix = setup_git_directory(); argv += tree_idx; parse_treeish_arg(argv, &ar.args, prefix); |