about summary refs log tree commit diff
path: root/xls
blob: 126bf23c70630e5d81dd14d94d1b08d58ba749bb (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
#!/bin/sh
# xls PKGS... - list files contained in PKGS (including binpkgs)

BRANCH=$(git symbolic-ref -q --short HEAD 2>/dev/null)

for pkg; do
	xbps-query \
		--repository=hostdir/binpkgs/$BRANCH \
		--repository=../hostdir/binpkgs/$BRANCH \
		--repository=../../hostdir/binpkgs/$BRANCH \
		-f $pkg
done