Received: by mail.netbsd.org (Postfix, from userid 605) id B4DBD84E0A; Sat, 4 Apr 2020 15:17:37 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 3E0E684DF7 for ; Sat, 4 Apr 2020 15:17:37 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([127.0.0.1]) by localhost (mail.netbsd.org [127.0.0.1]) (amavisd-new, port 10025) with ESMTP id 5jfQT51Wt_uQ for ; Sat, 4 Apr 2020 15:17:36 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 9733E84CD5 for ; Sat, 4 Apr 2020 15:17:36 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 90F43FB27; Sat, 4 Apr 2020 15:17:36 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1586013456156630" MIME-Version: 1.0 Date: Sat, 4 Apr 2020 15:17:36 +0000 From: "Taylor R Campbell" Subject: CVS commit: pkgsrc/pkgtools/pbulk/files/pbulk/scripts To: pkgsrc-changes@NetBSD.org Reply-To: riastradh@netbsd.org X-Mailer: log_accum Message-Id: <20200404151736.90F43FB27@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: pkgsrc-changes.NetBSD.org Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1586013456156630 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: riastradh Date: Sat Apr 4 15:17:36 UTC 2020 Modified Files: pkgsrc/pkgtools/pbulk/files/pbulk/scripts: client-prepare Log Message: Fix order of assignments so we set path as intended, not to empty. To generate a diff of this commit: cvs rdiff -u -r1.3 -r1.4 \ pkgsrc/pkgtools/pbulk/files/pbulk/scripts/client-prepare Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1586013456156630 Content-Disposition: inline Content-Length: 817 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/pkgtools/pbulk/files/pbulk/scripts/client-prepare diff -u pkgsrc/pkgtools/pbulk/files/pbulk/scripts/client-prepare:1.3 pkgsrc/pkgtools/pbulk/files/pbulk/scripts/client-prepare:1.4 --- pkgsrc/pkgtools/pbulk/files/pbulk/scripts/client-prepare:1.3 Sun Dec 18 22:59:35 2016 +++ pkgsrc/pkgtools/pbulk/files/pbulk/scripts/client-prepare Sat Apr 4 15:17:36 2020 @@ -1,5 +1,5 @@ #!@SH@ -# $NetBSD: client-prepare,v 1.3 2016/12/18 22:59:35 joerg Exp $ +# $NetBSD: client-prepare,v 1.4 2020/04/04 15:17:36 riastradh Exp $ . @PBULK_CONFIG@ @@ -27,11 +27,11 @@ for client in ${scan_clients} ${build_cl done for client in ${unique_clients}; do - case ${client} in + case ${client} in /*) + path=${client} port= client= - path=${client} ;; *:*) port="-p ${client##*:}" --_----------=_1586013456156630--