submodule--helper: remove --prefix from "absorbgitdirs"
Let's pass the "-C <prefix>" option instead to "absorbgitdirs" from
its only caller.
When it was added in f6f8586140
(submodule: add absorb-git-dir
function, 2016-12-12) there were other "submodule--helper" subcommands
that were invoked with "-C <prefix>", so we could have done this all
along.
Suggested-by: Glen Choo <chooglen@google.com>
Signed-off-by: Ævar Arnfjörð Bjarmason <avarab@gmail.com>
Signed-off-by: Taylor Blau <me@ttaylorr.com>
This commit is contained in:

committed by
Taylor Blau

parent
82ff87789b
commit
64f48ad1f0
@ -557,7 +557,7 @@ cmd_sync()
|
||||
|
||||
cmd_absorbgitdirs()
|
||||
{
|
||||
git submodule--helper absorbgitdirs --prefix "$wt_prefix" "$@"
|
||||
git ${wt_prefix:+-C "$wt_prefix"} submodule--helper absorbgitdirs "$@"
|
||||
}
|
||||
|
||||
# This loop parses the command line arguments to find the
|
||||
|
Reference in New Issue
Block a user