void-packages/common/travis/show_files.sh

18 lines
289 B
Bash
Raw Normal View History

#!/bin/sh
#
2015-04-10 08:59:28 +00:00
# show_files.sh
[ "$XLINT" ] && exit 0
2015-07-14 08:47:06 +00:00
if [ "$1" != "$2" ]; then
arch="-a $2"
fi
for pkg in $(cat /tmp/templates); do
for subpkg in $(xsubpkg $pkg); do
/bin/echo -e "\x1b[32mFiles of $subpkg:\x1b[0m"
2015-04-23 07:46:40 +00:00
./xbps-src -H $HOME/hostdir $arch show-files "$subpkg"
done
done