The die() message that may occur in module_name() is not really relevant to the user when called from module_clone(); the latter handles the "failure" (no submodule mapping) anyway. Leave other callers of module_name() unchanged, as the die() message shown is either relevant for user consumption (such as those that exit() when the call fails), or will not occur at all (when called with paths returned by module_list()). Signed-off-by: Tay Ray Chuan <rctay89@xxxxxxxxx> --- git-submodule.sh | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/git-submodule.sh b/git-submodule.sh index ebea35b..3adab93 100755 --- a/git-submodule.sh +++ b/git-submodule.sh @@ -130,7 +130,7 @@ module_clone() gitdir= gitdir_base= - name=$(module_name "$path") + name=$(module_name "$path" 2>/dev/null) base_path=$(dirname "$path") gitdir=$(git rev-parse --git-dir) -- 1.7.7.584.g16d0ea -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html