From 61ac850ba07c7c468a61fa5ce554af31fed5de38 Mon Sep 17 00:00:00 2001 From: Eric Keller Date: Tue, 15 Dec 2015 18:09:57 +0100 Subject: [PATCH] fix integer comparison --- common/download.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/download.sh b/common/download.sh index 14373bf..c27682a 100755 --- a/common/download.sh +++ b/common/download.sh @@ -39,7 +39,7 @@ elif [ ${DISTRIBUTION} = 'fedora' -a "${RELEASE}" = 'rawhide' ]; then utils.lxc.create -t fedora --\ --release ${RELEASE} \ --arch ${ARCH} -elif [ ${DISTRIBUTION} = 'fedora' -a ${RELEASE} -ge '21' ]; then +elif [ ${DISTRIBUTION} = 'fedora' -a ${RELEASE} -ge 21 ]; then ARCH=$(echo ${ARCH} | sed -e "s/38/68/" | sed -e "s/amd64/x86_64/") utils.lxc.create -t fedora --\ --release ${RELEASE} \