diff options
author | Ruslan Makhmatkhanov <rm@FreeBSD.org> | 2024-05-29 20:09:48 +0000 |
---|---|---|
committer | Ruslan Makhmatkhanov <rm@FreeBSD.org> | 2024-05-29 20:10:59 +0000 |
commit | ef7c83416ca1357080fb5c89f05b8f9d5033aa88 (patch) | |
tree | 505ce21aded3cf362fb00db850ae9bb3a3b4f0b6 | |
parent | 08c939e0440f63c2fcf895a1b8d64a12fd19f174 (diff) |
./UPDATING: optimize pkg info call
PR: 275494
Reported by: vvd
-rw-r--r-- | UPDATING | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -38,7 +38,7 @@ you update your ports collection, before attempting any port upgrades. For portmaster users: # sh # portmaster -o lang/python311 python39 - # REINSTALL="$(pkg info -o "*py39*" | awk '{printf "%s ", $2}')" + # REINSTALL="$(pkg info -oq '*py39*')" # pkg delete -f "*py39*" # portmaster $REINSTALL # REBUILD=$(pkg query -g "%n:%dn" '*' | grep py3 | grep -v py311 | cut -d : -f 1 | sort -u) |