blob: 3fe3ef3908032b76ed5afdf546cc2d710564600f (
plain) (
blame)
1
2
3
4
5
6
7
8
|
#!/bin/sh
# xcheckmypkgs [EMAIL] - check your packages for updates
cd "$(xdistdir)" &&
for pkg in $(xmypkgs "$@"); do
echo "checking: $pkg"
./xbps-src update-check "$pkg" |grep -v '^=> Using'
done
|