From ecdd98b23653ce2e4673bb8b4ad61e36ba2bcf3b Mon Sep 17 00:00:00 2001 From: Raghavendra Bhat Date: Thu, 22 Sep 2011 16:21:42 +0530 Subject: helper_scripts/download_and_install: allow beta releases to be downloaded, build with DEBUG --- helper_scrips/download_and_install.sh | 3 +++ 1 file changed, 3 insertions(+) (limited to 'helper_scrips/download_and_install.sh') diff --git a/helper_scrips/download_and_install.sh b/helper_scrips/download_and_install.sh index 505d591..afbffda 100755 --- a/helper_scrips/download_and_install.sh +++ b/helper_scrips/download_and_install.sh @@ -57,6 +57,9 @@ function check_if_qa_release () glusterfs_version=$1; echo $glusterfs_version | grep "qa" 2>/dev/null 1>/dev/null; + if [ $? -ne 0 ]; then + echo $glusterfs_version | grep "beta" 2>/dev/null 1>/dev/null; + fi ret=$?; return $ret; -- cgit