diff --git a/lib/Formula.py b/lib/Formula.py index 16e8b9c..ea3e9cc 100644 --- a/lib/Formula.py +++ b/lib/Formula.py @@ -31,7 +31,7 @@ class Formula(): if 'url' in self.formula_def: git_url = str(self.formula_def['url']) else: - git_url = str(self.formulas_url) + str(self.formula_def['name']) + '-formula' + git_url = str(self.formulas_url) + str(self.formula_def['name']) # put together the local local_path = str(self.formulas_dir) + '/' + str(self.formula_def['name']) elif isinstance(self.formula_def, str):