Commit d4dddb83 authored by Marco Mariani's avatar Marco Mariani

removed obsolete recipe

parent fdc97059
# -*- coding: utf-8 -*-
"""
Recipe environment.
See http://pypi.python.org/pypi/collective.recipe.environment/
"""
import os
from slapos.recipe.librecipe import shlex
class Recipe(object):
"""zc.buildout recipe"""
def __init__(self, buildout, name, options):
self.options = options
print 'To replicate the environment in a shell: --------'
for key in options:
print 'export %s=%s' % (key, shlex.quote(options[key]))
print '-------------------------------------------------'
os.environ.update(options)
options.update(os.environ)
def install(self):
"""Installer"""
return tuple()
update = install
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment