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.1 required=3.0 tests=ALL_TRUSTED,AWL,BAYES_00, DKIM_SIGNED,DKIM_VALID,DKIM_VALID_AU,DKIM_VALID_EF 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 5D037203AF for ; Mon, 28 Nov 2022 05:32:45 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=80x24.org; s=selector1; t=1669613565; bh=O15J83ppfdofgsw03HGjXf2HPBdSQQ/zjD2dXAD+i/Q=; h=From:To:Subject:Date:In-Reply-To:References:From; b=ulr7NyBCBtGmysrbIfdtWs5WoebaOTLBTMe1uYn//LecrbxQfSSkt+Gc++blfAco6 hUysM7S+5tOLldCoIzBbTiWYX880spuDy8owQ30ghT/E3L1tm5myXRAGS5gxRxvKoU wRcyZBqdSAOaEGHx9mvTxADhs1OeZgz26UZosBgc= From: Eric Wong To: meta@public-inbox.org Subject: [PATCH 60/95] clone: use v5.12 Date: Mon, 28 Nov 2022 05:31:57 +0000 Message-Id: <20221128053232.291618-61-e@80x24.org> In-Reply-To: <20221128053232.291618-1-e@80x24.org> References: <20221128053232.291618-1-e@80x24.org> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit List-Id: Another small step in what will probably a be a decades-long quest to reduce startup time by a few milliseconds. --- script/public-inbox-clone | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/script/public-inbox-clone b/script/public-inbox-clone index a5651e5f..26f42e74 100755 --- a/script/public-inbox-clone +++ b/script/public-inbox-clone @@ -2,8 +2,7 @@ # Copyright (C) all contributors # License: AGPL-3.0+ # Wrapper to git clone remote public-inboxes -use strict; -use v5.10.1; +use v5.12; use Getopt::Long qw(:config gnu_getopt no_ignore_case auto_abbrev); my $opt = {}; my $help = <