From: Eric Wong Date: Mon, 6 Apr 2020 09:56:21 +0000 (+0000) Subject: examples/grok-pull.post_update_hook: move url_base to the top X-Git-Tag: v1.4.0~17 X-Git-Url: http://www.git.stargrave.org/?p=public-inbox.git;a=commitdiff_plain;h=ecb21bea58c0a0cb2a4abb399339d197f8076e56 examples/grok-pull.post_update_hook: move url_base to the top Users are encouraged to edit this script, anyways, so make it easy for them to swap out and use whatever URL they need. --- diff --git a/examples/grok-pull.post_update_hook.sh b/examples/grok-pull.post_update_hook.sh index 18200ba2..3ead3944 100755 --- a/examples/grok-pull.post_update_hook.sh +++ b/examples/grok-pull.post_update_hook.sh @@ -3,6 +3,8 @@ # git repo path as it's first and only arg. full_git_dir="$1" +url_base=http://127.0.0.1:8080/ + # same default as other public-inbox-* tools PI_CONFIG=${PI_CONFIG-~/.public-inbox/config} @@ -79,7 +81,7 @@ case $cfg_dir in echo >&2 "E: curl $config_url failed" echo >&2 "E: using bogus <$addresses> for $inbox_dir" fi - local_url="http://127.0.0.1:8080/$inbox_name" + local_url="$url_base$inbox_name" public-inbox-init -V$inbox_fmt "$inbox_name" \ "$inbox_dir" "$local_url" $addresses