From 973d3c7b2ba571a117aac62af3f2cf6a708c683d Mon Sep 17 00:00:00 2001 From: Mitesh Shah Date: Thu, 10 Jul 2014 15:35:31 +0530 Subject: [PATCH] Hard code ee_latest_version for testing --- bin/eeupdate | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/bin/eeupdate b/bin/eeupdate index 484b2616..2352118b 100644 --- a/bin/eeupdate +++ b/bin/eeupdate @@ -55,7 +55,8 @@ function ee_lib_git() # Update EasyEngine (ee) EE_CURRENT_VERSION=$(ee version | awk '{print($3)}') -EE_LATEST_VERSION=$(curl -sL https://api.github.com/repos/rtCamp/easyengine/releases | grep tag_name | awk '{print($2)}' | cut -d'"' -f2 | cut -c2- | head -n1) +EE_LATEST_VERSION=2.0.0 +#EE_LATEST_VERSION=$(curl -sL https://api.github.com/repos/rtCamp/easyengine/releases | grep tag_name | awk '{print($2)}' | cut -d'"' -f2 | cut -c2- | head -n1) echo EE_CURRENT_VERSION = $EE_CURRENT_VERSION EE_LATEST_VERSION = $EE_LATEST_VERSION &>> $EE_UPDATE_LOG if [[ $EE_CURRENT_VERSION < $EE_LATEST_VERSION ]]; then