vp-build/common/travis/show_files.sh

16 lines
279 B
Bash
Raw Normal View History

#!/bin/sh
#
2015-04-10 10:59:28 +02:00
# show_files.sh
[ "$XLINT" ] && exit 0
2015-07-14 10:47:06 +02:00
export XBPS_TARGET_ARCH="$2"
for pkg in $(cat /tmp/templates); do
for subpkg in $(xsubpkg $pkg); do
/bin/echo -e "\x1b[32mFiles of $subpkg:\x1b[0m"
xbps-query --repository=$HOME/hostdir/binpkgs -f "$subpkg"
done
done