added actions to the help section of msm. (#972)

Add actions to the help section of msm.
pull/975/head
el-tocino 2017-08-09 01:09:18 -05:00 committed by Åke
parent ab22106659
commit 08e76e538d
1 changed files with 7 additions and 3 deletions

10
msm/msm
View File

@ -53,9 +53,13 @@ echo "####### Mycroft Skill Manager #######"
function help() {
echo "msm: Mycroft Skill Manager"
echo -e " Copyright (c) 2017 Mycroft AI, Inc. All rights reserved.\n"
echo "usage: msm install <repository> or <name>"
echo " Installs the given Skill into the ${mycroft_skill_folder}"
echo " where <repository> is the address of the skill in Github."
echo "usage: msm <action> <optional parameters>"
echo " actions include:"
echo " install: Installs skill <name> or <repository github url>."
echo " list: lists all skills available in the mycroft-skills repo."
echo " update: updates installed skills."
echo " default: installs default skill list."
echo " search: searches the mycroft-skill repo list for <keyword>"
echo "example: msm search rss-skill"
echo -e "example: msm install https://github.com/ethanaward/demo_skill.git\n"
exit 1