fix msm install order
parent
11cd652889
commit
21ad61b272
14
msm/msm
14
msm/msm
|
@ -336,13 +336,6 @@ function install() {
|
||||||
fi
|
fi
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# If the skill has a requirements.txt, pip install them
|
|
||||||
run_pip "${name}"
|
|
||||||
rc=$?
|
|
||||||
if [[ ${rc} -gt 0 ]] ; then
|
|
||||||
return ${rc}
|
|
||||||
fi
|
|
||||||
|
|
||||||
# If the skill has a requirements.sh, then run that using bash
|
# If the skill has a requirements.sh, then run that using bash
|
||||||
if [[ -f "requirements.sh" ]]; then
|
if [[ -f "requirements.sh" ]]; then
|
||||||
echo " Setting up native environment..."
|
echo " Setting up native environment..."
|
||||||
|
@ -353,6 +346,13 @@ function install() {
|
||||||
fi
|
fi
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
# If the skill has a requirements.txt, pip install them
|
||||||
|
run_pip "${name}"
|
||||||
|
rc=$?
|
||||||
|
if [[ ${rc} -gt 0 ]] ; then
|
||||||
|
return ${rc}
|
||||||
|
fi
|
||||||
|
|
||||||
echo "Installed: ${name}"
|
echo "Installed: ${name}"
|
||||||
send_install_success "${name}"
|
send_install_success "${name}"
|
||||||
return 0
|
return 0
|
||||||
|
|
Loading…
Reference in New Issue