Merge pull request #709 from MycroftAI/feature/issue-706

#706 - fixing on raspberry msm
pull/710/head
kfezer 2017-04-27 16:27:57 -07:00 committed by GitHub
commit 1dfec9d802
2 changed files with 1 additions and 4 deletions

View File

@ -23,9 +23,6 @@
# This script assists in the installation and management of # This script assists in the installation and management of
# skills loaded from Github. # skills loaded from Github.
set -Ee
set -m
mycroft_skill_folder="/opt/mycroft/skills" mycroft_skill_folder="/opt/mycroft/skills"
mycroft_virtualenv=~/.virtualenvs/mycroft/bin/activate mycroft_virtualenv=~/.virtualenvs/mycroft/bin/activate

View File

@ -84,8 +84,8 @@ def skills_manager(message):
Message("speak", {'utterance': "Checking for Updates"})) Message("speak", {'utterance': "Checking for Updates"}))
# Install default skills and look for updates via Github # Install default skills and look for updates via Github
install_default_skills(skills_manager_timer is None if True else False)
logger.debug("==== Invoking Mycroft Skill Manager: " + MSM_BIN) logger.debug("==== Invoking Mycroft Skill Manager: " + MSM_BIN)
install_default_skills(False)
# Perform check again once and hour # Perform check again once and hour
skills_manager_timer = Timer(3600, _skills_manager_dispatch) skills_manager_timer = Timer(3600, _skills_manager_dispatch)