Skip to content

Commit a35d58e

Browse files
authored
Fixed errors in ee update command
1 parent cd6e6ea commit a35d58e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

install

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -734,9 +734,9 @@ function ee_git_init()
734734
}
735735

736736
# Update EasyEngine
737-
if [ -f /usr/local/sbin/easyengine ]; then
737+
if [ -f /usr/local/bin/ee ]; then
738738
# Check old EasyEngine version
739-
ee version | grep ${ee_version_old} &>> /dev/null
739+
ee --version | grep ${ee_version_old} &>> /dev/null
740740
if [[ $? -ne 0 ]]; then
741741
ee_lib_echo "EasyEngine $ee_version_old not found on your system" | tee -ai $ee_install_log
742742
ee_lib_echo "Updating your EasyEngine to $ee_version_old for compability" | tee -ai $ee_install_log

0 commit comments

Comments
 (0)