Browse Source

Replace refactor => stable

old-stable
Mitesh Shah 11 years ago
parent
commit
4140ff189d
  1. 2
      bin/easyengine
  2. 6
      bin/update

2
bin/easyengine

@ -584,7 +584,7 @@ elif [ "$EE_FIRST" = "secure" ]; then
# EasyEngine update
elif [ "$EE_FIRST" = "update" ]; then
ee_lib_echo "Please set/use following alias to update EasyEngine (ee)"
echo "alias eeupdate=\"wget -qO /tmp/eeupdate https://raw.githubusercontent.com/rtCamp/easyengine/refactor/bin/update && sudo bash /tmp/eeupdate\""
echo "alias eeupdate=\"wget -qO eeup http://rt.cx/eeup && sudo bash eeup\""
else
ee_lib_echo "EasyEngine (ee) commands:"

6
bin/update

@ -87,9 +87,9 @@ if [[ $EE_CURRENT_VERSION < $EE_LATEST_VERSION ]]; then
rm -rf /tmp/easyengine &>> /dev/null
# Let's clone EasyEngine (ee)
ee_lib_echo "Cloning EasyEngine (ee) refactor branch, please wait..." | tee -ai $EE_UPDATE_LOG
git clone -b refactor https://github.com/rtCamp/easyengine.git /tmp/easyengine &>> $EE_UPDATE_LOG \
|| ee_lib_error "Unable to clone EasyEngine (ee) refactor branch, exit status = " $?
ee_lib_echo "Cloning EasyEngine (ee) stable branch, please wait..." | tee -ai $EE_UPDATE_LOG
git clone -b stable https://github.com/rtCamp/easyengine.git /tmp/easyengine &>> $EE_UPDATE_LOG \
|| ee_lib_error "Unable to clone EasyEngine (ee) stable branch, exit status = " $?
# Setup EasyEngine (ee)
if [ ! -d /etc/easyengine ]; then

Loading…
Cancel
Save