aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTobias Kortkamp <tobik@FreeBSD.org>2021-09-06 16:55:59 +0000
committerTobias Kortkamp <tobik@FreeBSD.org>2021-09-06 19:27:27 +0000
commit1090228081229fa88d9c8d3f1390276ae3584426 (patch)
tree7f5be56adc19572c76a40e45f5a7621da2f8c566
parent35ac75974b422e142ed00f3c43b5b0f6e1a4f358 (diff)
downloadports-1090228081229fa88d9c8d3f1390276ae3584426.tar.gz
ports-1090228081229fa88d9c8d3f1390276ae3584426.zip
lang/rust-bootstrap: Fix sync.sh to work with any package extension
-rw-r--r--lang/rust-bootstrap/sync.sh2
1 files changed, 1 insertions, 1 deletions
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}"