summaryrefslogtreecommitdiff
path: root/git-instaweb.sh
diff options
context:
space:
mode:
authorÆvar Arnfjörð Bjarmason <avarab@gmail.com>2022-06-28 10:05:34 (GMT)
committerJunio C Hamano <gitster@pobox.com>2022-06-28 20:13:18 (GMT)
commit5b893f7d81eb7feb43662ed8663e2af76a76b4c8 (patch)
treee2cbaa81e931b33ea0db8034701c004fe1bd0506 /git-instaweb.sh
parent2eec463739745d2110aa5462ba9547fa8d255ebb (diff)
downloadgit-5b893f7d81eb7feb43662ed8663e2af76a76b4c8.zip
git-5b893f7d81eb7feb43662ed8663e2af76a76b4c8.tar.gz
git-5b893f7d81eb7feb43662ed8663e2af76a76b4c8.tar.bz2
git-sh-setup.sh: remove "say" function, change last users
Remove the "say" function, with various rewrites of the remaining git-*.sh code to C and the preceding change to have git-submodule.sh stop using the GIT_QUIET variable there were only four uses in git-subtree.sh. Let's have it use an "arg_quiet" variable instead, and move the "say" function over to it. The only other use was a trivial message in git-instaweb.sh, since it has never supported the --quiet option (or similar) that code added in 0b624b4ceee (instaweb: restart server if already running, 2009-11-22) can simply use "echo" instead. The remaining in-tree hits from "say" are all for the sibling function defined in t/test-lib.sh. It's safe to remove this function since it has never been documented in Documentation/git-sh-setup.txt. Signed-off-by: Ævar Arnfjörð Bjarmason <avarab@gmail.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'git-instaweb.sh')
-rwxr-xr-xgit-instaweb.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/git-instaweb.sh b/git-instaweb.sh
index 4349566..c68f494 100755
--- a/git-instaweb.sh
+++ b/git-instaweb.sh
@@ -102,7 +102,7 @@ resolve_full_httpd () {
start_httpd () {
if test -f "$fqgitdir/pid"; then
- say "Instance already running. Restarting..."
+ echo "Instance already running. Restarting..."
stop_httpd
fi