From 76f189d63bf620461188c1efc800c8119c30292b Mon Sep 17 00:00:00 2001 From: Joseph Hunkeler Date: Wed, 22 May 2013 13:38:09 -0400 Subject: Transmogrification implemented --- ipsutils/config.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/ipsutils/config.py b/ipsutils/config.py index 1b9963f..42a354d 100644 --- a/ipsutils/config.py +++ b/ipsutils/config.py @@ -38,6 +38,7 @@ class Config(object): 'build': [], 'prep': [], 'install': [], + 'transforms': [], 'files': [] } @@ -54,7 +55,7 @@ class Config(object): key_dict[key] = parts[1] found_data = False - code_section = ['%build', '%prep', '%install'] + code_section = ['%build', '%prep', '%install', '%transforms'] for section in code_section: for line in file(ipsfile).readlines(): -- cgit