about summary refs log tree commit diff
path: root/xcheckmypkgs
blob: c57767be92f742befd7f7d00eeead8ce11d71f3f (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