diff options
author | Matt Rendina <rendinam@users.noreply.github.com> | 2017-09-19 17:47:28 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-09-19 17:47:28 -0400 |
commit | ea055659c8a5a1fa60425070d8f12a51d9ee6867 (patch) | |
tree | 3af38a196b1359a76d6c9a38cd7bd340da498079 | |
parent | 1253d445e1dbde1bce0b8027e6ad8d31fcca56ed (diff) | |
download | rambo-1.0.0b3.tar.gz |
Quck test; disable output_yaml call1.0.0b3
...to address error that occurs during rendering of recipes with empty build: and run: requirements fields.
-rwxr-xr-x | rambo/meta.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/rambo/meta.py b/rambo/meta.py index 47817b0..e0321db 100755 --- a/rambo/meta.py +++ b/rambo/meta.py @@ -90,7 +90,7 @@ class Meta(object): self.complete = self.is_complete() if self.valid: self.name = self.mdata['package']['name'] - print('\n{}'.format(conda_build.api.output_yaml(self.metaobj))) + #print('\n{}'.format(conda_build.api.output_yaml(self.metaobj))) if self.metaobj.skip(): print('skipping on selected platform due to directive: {}'.format( self.name)) |