Merge pull request #2323 from laixer/devel

Respect gem_source option if specified
pull/2319/merge
Michael DeHaan 12 years ago
commit bd600c1cbc

@ -151,7 +151,7 @@ def main():
if module.params['gem_source'] and module.params['state'] == 'latest':
module.fail_json(msg="Cannot maintain state=latest when installing from local source")
if module.params['gem_source'] is not 'null':
if not module.params['gem_source']:
module.params['gem_source'] = module.params['name']
changed = False

Loading…
Cancel
Save