Commit c1efcc12 authored by Aaron Griffin's avatar Aaron Griffin
Browse files

Sync package name checking for PKGDEST support



Not many changes here, most were already existing
checkpkg should fully support PKGDEST

Signed-off-by: default avatarAaron Griffin <aaronmgriffin@gmail.com>
parent da679551
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -19,12 +19,13 @@ oldstylepkgfile=${pkgname}-${pkgver}-${pkgrel}.pkg.tar.gz
if [ ! -f $pkgfile ]; then
	if [ -f $PKGDEST/$pkgfile ]; then
		pkgfile=$PKGDEST/$pkgfile
		oldstylepkgfile=$PKGDEST/$oldstylepkgfile
	elif [ -f $oldstylepkgfile ]; then
		pkgfile=$oldstylepkgfile
	elif [ -f $PKGDEST/$oldstylepkgfile ]; then
		pkgfile=$PKGDEST/$oldstylepkgfile
	else
		echo "You must have a built package to check."
		echo "File $pkgfile doesn't exist"
		exit 1
	fi
fi