Fixup info_tmpl now that $url is gone.
--HG-- extra : convert_revision : b79e598e34d9297e690ed130d28c99f404ad51e4
This commit is contained in:
parent
289b8130a2
commit
bee2cfe2c2
1 changed files with 1 additions and 2 deletions
3
xbps.sh
3
xbps.sh
|
@ -171,9 +171,8 @@ info_tmpl()
|
||||||
echo "pkgname: $pkgname"
|
echo "pkgname: $pkgname"
|
||||||
echo "version: $version"
|
echo "version: $version"
|
||||||
for i in "${distfiles}"; do
|
for i in "${distfiles}"; do
|
||||||
[ -n "$i" ] && echo "distfile: $i"
|
[ -n "$i" ] && i=$(echo $i|$sed_cmd s'|@||g') && echo "distfile: $i"
|
||||||
done
|
done
|
||||||
echo "URL: $url"
|
|
||||||
echo "maintainer: $maintainer"
|
echo "maintainer: $maintainer"
|
||||||
[ -n $checksum ] && echo "checksum: $checksum"
|
[ -n $checksum ] && echo "checksum: $checksum"
|
||||||
echo "build_style: $build_style"
|
echo "build_style: $build_style"
|
||||||
|
|
Loading…
Reference in a new issue