Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 6 Sep 2021 19:29:00 GMT
From:      Tobias Kortkamp <tobik@FreeBSD.org>
To:        ports-committers@FreeBSD.org, dev-commits-ports-all@FreeBSD.org, dev-commits-ports-main@FreeBSD.org
Subject:   git: 109022808122 - main - lang/rust-bootstrap: Fix sync.sh to work with any package extension
Message-ID:  <202109061929.186JT06V047853@gitrepo.freebsd.org>

next in thread | raw e-mail | index | archive | help
The branch main has been updated by tobik:

URL: https://cgit.FreeBSD.org/ports/commit/?id=1090228081229fa88d9c8d3f1390276ae3584426

commit 1090228081229fa88d9c8d3f1390276ae3584426
Author:     Tobias Kortkamp <tobik@FreeBSD.org>
AuthorDate: 2021-09-06 16:55:59 +0000
Commit:     Tobias Kortkamp <tobik@FreeBSD.org>
CommitDate: 2021-09-06 19:27:27 +0000

    lang/rust-bootstrap: Fix sync.sh to work with any package extension
---
 lang/rust-bootstrap/sync.sh | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/lang/rust-bootstrap/sync.sh b/lang/rust-bootstrap/sync.sh
index e1b9c327c72f..ca9eadec185d 100644
--- a/lang/rust-bootstrap/sync.sh
+++ b/lang/rust-bootstrap/sync.sh
@@ -16,7 +16,7 @@ export PKG_DBDIR="${DATADIR}/pkgdb"
 pkg update -f -r FreeBSD
 pkg fetch -r FreeBSD -o "${DATADIR}" -yg "*-rust-bootstrap-${version}*"
 
-find "${DATADIR}/All" -name "*rust-bootstrap-${version}*.txz" \
+find "${DATADIR}/All" -name "*rust-bootstrap-${version}*.*" \
 	-execdir tar -xvf {} \;
 
 dir="public_distfiles/rust/${date}"



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202109061929.186JT06V047853>