diff options
-rw-r--r-- | cbc/cli/recipe.py | 2 | ||||
-rw-r--r-- | cbc/meta.py | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/cbc/cli/recipe.py b/cbc/cli/recipe.py index 8fabe2f..9b8ac6a 100644 --- a/cbc/cli/recipe.py +++ b/cbc/cli/recipe.py @@ -72,7 +72,7 @@ if errorlevel 1 exit 1 if not METAPACKAGE: config['source'] = {} config['source']['fn'] = '${package:name}-${package:version}.tar.gz' - config['source']['url'] = '${package:home}/${fn}' + config['source']['url'] = '${about:home}/${fn}' if args.use_git: config['source']['git_url'] = '' config['source']['git_tag'] = '' diff --git a/cbc/meta.py b/cbc/meta.py index fe3d1e5..a8940f1 100644 --- a/cbc/meta.py +++ b/cbc/meta.py @@ -27,7 +27,7 @@ class MetaData(object): self.builtins = ['cbc_build', 'cbc_cgi', 'settings', 'environ'] self.fields = self.convert_conda_fields(conda_build.metadata.FIELDS) - self.config = CBCConfigParser(interpolation=ExtendedInterpolation(), allow_no_value=True) + self.config = CBCConfigParser(interpolation=ExtendedInterpolation(), allow_no_value=True, comment_prefixes='#') # Include built-in Conda metadata fields self.config.read_dict(self.fields) |