From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.2 (2018-09-13) on dcvr.yhbt.net X-Spam-Level: X-Spam-Status: No, score=-4.0 required=3.0 tests=ALL_TRUSTED,BAYES_00 shortcircuit=no autolearn=ham autolearn_force=no version=3.4.2 Received: from localhost (dcvr.yhbt.net [127.0.0.1]) by dcvr.yhbt.net (Postfix) with ESMTP id C4ED71F5AE for ; Tue, 28 Jul 2020 10:31:14 +0000 (UTC) From: Eric Wong To: meta@public-inbox.org Subject: [PATCH] examples/grok-pull.post_update_hook: fix description URL Date: Tue, 28 Jul 2020 10:31:14 +0000 Message-Id: <20200728103114.11446-1-e@yhbt.net> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit List-Id: I finally noticed descriptions weren't showing up in my mirrors :x --- examples/grok-pull.post_update_hook.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/grok-pull.post_update_hook.sh b/examples/grok-pull.post_update_hook.sh index ec4ae93e..092ca283 100755 --- a/examples/grok-pull.post_update_hook.sh +++ b/examples/grok-pull.post_update_hook.sh @@ -108,7 +108,7 @@ case $cfg_dir in git config -f "$PI_CONFIG" \ "publicinbox.$inbox_name.infourl" "$url" done - curl -sSfv "remote_inbox_url"/description >"$inbox_dir"/description + curl -sSfv "$remote_inbox_url"/description >"$inbox_dir"/description echo "I: $inbox_name at $inbox_dir ($addresses) $local_url" ;; esac