From 0a71559ee490dc54527ad4dcc5985705a4271359 Mon Sep 17 00:00:00 2001 From: Juan RP Date: Tue, 28 Oct 2008 06:19:06 +0100 Subject: [PATCH] info_tmpl(): missing quotes to evaluate $checksum. --HG-- extra : convert_revision : 9b5917d5a82f57a992eba6b28cf5294f6af497ac --- xbps.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/xbps.sh b/xbps.sh index fdb58651e59..4e4bfd9ede3 100755 --- a/xbps.sh +++ b/xbps.sh @@ -176,7 +176,7 @@ info_tmpl() [ -n "$i" ] && i=$(echo $i|sed s'|@||g') && \ echo "distfile: $i" done - [ -n $checksum ] && echo "checksum: $checksum" + [ -n "$checksum" ] && echo "checksum: $checksum" echo "maintainer: $maintainer" echo "build_style: $build_style" echo "short_desc: $short_desc"