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-ASN: 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 C800F1F934 for ; Wed, 5 May 2021 17:49:45 +0000 (UTC) From: Eric Wong To: meta@public-inbox.org Subject: [PATCH 1/3] script/public-inbox-extindex: chmod +x Date: Wed, 5 May 2021 17:49:42 +0000 Message-Id: <20210505174944.69155-2-e@80x24.org> In-Reply-To: <20210505174944.69155-1-e@80x24.org> References: <20210505174944.69155-1-e@80x24.org> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit List-Id: Everything else that's intended to be executable at some point has the executable bit set. Remove an inaccurate comment while we're at it. --- script/public-inbox-extindex | 1 - 1 file changed, 1 deletion(-) mode change 100644 => 100755 script/public-inbox-extindex diff --git a/script/public-inbox-extindex b/script/public-inbox-extindex old mode 100644 new mode 100755 index 15ac20eb..771486c4 --- a/script/public-inbox-extindex +++ b/script/public-inbox-extindex @@ -1,7 +1,6 @@ #!perl -w # Copyright (C) 2020-2021 all contributors # License: AGPL-3.0+ -# Basic tool to create a Xapian search index for a public-inbox. use strict; use v5.10.1; use Getopt::Long qw(:config gnu_getopt no_ignore_case auto_abbrev);