aboutsummaryrefslogtreecommitdiff
path: root/git-submodule.sh
diff options
context:
space:
mode:
authorStefan Beller <sbeller@google.com>2016-02-29 18:07:14 -0800
committerJunio C Hamano <gitster@pobox.com>2016-03-01 11:57:18 -0800
commit8c6b5491182510f2344dae71784fcb5c3992d005 (patch)
treedb5fab911e76663e0f4c793811eab5222a63a348 /git-submodule.sh
parenta028a1930c6b4b848e8fb47cc92c30b23d99a75e (diff)
downloadgit-8c6b5491182510f2344dae71784fcb5c3992d005.tar.gz
git-8c6b5491182510f2344dae71784fcb5c3992d005.tar.xz
submodule update: direct error message to stderr
Reroute the error message for specified but initialized submodules to stderr instead of stdout. Reviewed-by: Jonathan Nieder <jrnieder@gmail.com> Signed-off-by: Stefan Beller <sbeller@google.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'git-submodule.sh')
-rwxr-xr-xgit-submodule.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/git-submodule.sh b/git-submodule.sh
index 9bc5c5f94..9ee86d4f5 100755
--- a/git-submodule.sh
+++ b/git-submodule.sh
@@ -693,7 +693,7 @@ cmd_update()
if test "$update_module" = "none"
then
- echo "Skipping submodule '$displaypath'"
+ echo >&2 "Skipping submodule '$displaypath'"
continue
fi
@@ -702,7 +702,7 @@ cmd_update()
# Only mention uninitialized submodules when its
# path have been specified
test "$#" != "0" &&
- say "$(eval_gettext "Submodule path '\$displaypath' not initialized
+ say >&2 "$(eval_gettext "Submodule path '\$displaypath' not initialized
Maybe you want to use 'update --init'?")"
continue
fi