Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.kernel.org/pub/scm/git/git.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2011-10-05 23:35:55 +0400
committerJunio C Hamano <gitster@pobox.com>2011-10-05 23:35:55 +0400
commit9e3e789e70701beb25b3135d292edfbc99035701 (patch)
treef23f4b4b4d23f348762c774ef038b55a5b01cd51 /builtin
parent9c140016508fe7329d5aa962b473d8e84af108b1 (diff)
parentbe042aff24c8a17565934874f5d2eebd77ab2562 (diff)
Merge branch 'jc/maint-bundle-too-quiet'
* jc/maint-bundle-too-quiet: Teach progress eye-candy to fetch_refs_from_bundle()
Diffstat (limited to 'builtin')
-rw-r--r--builtin/bundle.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/builtin/bundle.c b/builtin/bundle.c
index 81046a9cb8..92a8a6026a 100644
--- a/builtin/bundle.c
+++ b/builtin/bundle.c
@@ -58,7 +58,7 @@ int cmd_bundle(int argc, const char **argv, const char *prefix)
} else if (!strcmp(cmd, "unbundle")) {
if (!startup_info->have_repository)
die(_("Need a repository to unbundle."));
- return !!unbundle(&header, bundle_fd) ||
+ return !!unbundle(&header, bundle_fd, 0) ||
list_bundle_refs(&header, argc, argv);
} else
usage(builtin_bundle_usage);