diff --git a/lib/core/update.py b/lib/core/update.py index 732d3b491..c2f38ecfb 100644 --- a/lib/core/update.py +++ b/lib/core/update.py @@ -35,7 +35,7 @@ def update(): logger.debug(debugMsg) dataToStdout("\r[%s] [INFO] update in progress " % time.strftime("%X")) - process = execute("gita pull %s" % rootDir, shell=True, stdout=PIPE, stderr=PIPE) + process = execute("git pull %s" % rootDir, shell=True, stdout=PIPE, stderr=PIPE) pollProcess(process, True) stdout, stderr = process.communicate()