Received: by mail.netbsd.org (Postfix, from userid 605) id 1DEAC84E67; Thu, 9 Sep 2021 11:14:33 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 5A9A184D61 for ; Thu, 9 Sep 2021 11:14:32 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([IPv6:::1]) by localhost (mail.netbsd.org [IPv6:::1]) (amavisd-new, port 10025) with ESMTP id 7sSDIOnFofO5 for ; Thu, 9 Sep 2021 11:14:32 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.NetBSD.org [IPv6:2001:470:a085:999:28c:faff:fe03:5984]) by mail.netbsd.org (Postfix) with ESMTP id E598A84CE1 for ; Thu, 9 Sep 2021 11:14:31 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id DD105FA97; Thu, 9 Sep 2021 11:14:31 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_16311860717260" MIME-Version: 1.0 Date: Thu, 9 Sep 2021 11:14:31 +0000 From: "Nia Alarie" Subject: CVS commit: pkgsrc/www/firefox91/files To: pkgsrc-changes@NetBSD.org Reply-To: nia@netbsd.org X-Mailer: log_accum Message-Id: <20210909111431.DD105FA97@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_16311860717260 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: nia Date: Thu Sep 9 11:14:31 UTC 2021 Added Files: pkgsrc/www/firefox91/files: node-wrapper.sh Log Message: firefox91: add missing file To generate a diff of this commit: cvs rdiff -u -r0 -r1.1 pkgsrc/www/firefox91/files/node-wrapper.sh Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_16311860717260 Content-Disposition: inline Content-Length: 375 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Added files: Index: pkgsrc/www/firefox91/files/node-wrapper.sh diff -u /dev/null pkgsrc/www/firefox91/files/node-wrapper.sh:1.1 --- /dev/null Thu Sep 9 11:14:31 2021 +++ pkgsrc/www/firefox91/files/node-wrapper.sh Thu Sep 9 11:14:31 2021 @@ -0,0 +1,9 @@ +#! /bin/sh + +VERS=v14.17.4 + +if [ "$1" = "-v" ] || [ "$1" = "--version" ]; then + printf "${VERS}\n" +fi + +exit 0 --_----------=_16311860717260--