2019-05-29 15:19:25 +00:00
|
|
|
Index: msm-0.7.6/msm/skill_entry.py
|
2018-08-11 13:50:03 +00:00
|
|
|
===================================================================
|
2019-05-29 15:19:25 +00:00
|
|
|
--- msm-0.7.6.orig/msm/skill_entry.py
|
|
|
|
+++ msm-0.7.6/msm/skill_entry.py
|
|
|
|
@@ -327,6 +327,8 @@ class SkillEntry(object):
|
|
|
|
setup_script = join(self.path, "requirements.sh")
|
|
|
|
if not exists(setup_script):
|
2018-08-11 13:50:03 +00:00
|
|
|
return False
|
|
|
|
+ LOG.info("Please check manually the requirements file at " + requirements_file)
|
|
|
|
+ return False
|
|
|
|
|
2019-05-29 15:19:25 +00:00
|
|
|
with work_dir(self.path):
|
|
|
|
rc = subprocess.call(["bash", setup_script])
|
|
|
|
@@ -505,6 +507,8 @@ class SkillEntry(object):
|
|
|
|
else:
|
|
|
|
LOG.info('Nothing new for ' + self.name)
|
2018-08-11 13:50:03 +00:00
|
|
|
return False
|
|
|
|
+ LOG.info("Please check manually the setup script at " + setup_script)
|
|
|
|
+ return False
|
|
|
|
|
2019-05-29 15:19:25 +00:00
|
|
|
@staticmethod
|
|
|
|
def find_git_url(path):
|