core: Fix rpmqa-sorted script to operate on $(pwd)

I'm not sure why it needs $(pwd) over ".", but oh well.
This commit is contained in:
Colin Walters 2014-01-29 18:37:26 -05:00
parent f6076b13a0
commit 87bdf29192

View File

@ -1,3 +1,3 @@
#!/bin/sh
set -e
rpm -qa --dbpath=. | sort
rpm -qa --dbpath=$(pwd) | sort