index : devtools32 | |
Archlinux32 fork of devtools | gitolite user |
summaryrefslogtreecommitdiff |
author | Aaron Griffin <aaronmgriffin@gmail.com> | 2007-10-01 23:08:29 -0500 |
---|---|---|
committer | Aaron Griffin <aaronmgriffin@gmail.com> | 2007-10-01 23:08:29 -0500 |
commit | c1efcc1204e73c7fe43007d3d4d3b65b173f657f (patch) | |
tree | f8c02172c9b962da2b57dbc6cb408a55de81aeae | |
parent | da6795515be9b2bcb209cf52a38ec7e025f04b95 (diff) |
-rw-r--r-- | checkpkg | 3 |
@@ -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 |