diff options
author | Joseph Hunkeler <jhunkeler@gmail.com> | 2013-05-22 13:38:09 -0400 |
---|---|---|
committer | Joseph Hunkeler <jhunkeler@gmail.com> | 2013-05-22 13:38:09 -0400 |
commit | 76f189d63bf620461188c1efc800c8119c30292b (patch) | |
tree | 748d118bd38b3f60a28b50f71cfe26a06113ee30 /ipsutils | |
parent | d0a0eaa7a346f43c110b64f49b54b95177c16020 (diff) | |
download | ipsutils-76f189d63bf620461188c1efc800c8119c30292b.tar.gz |
Transmogrification implemented
Diffstat (limited to 'ipsutils')
-rw-r--r-- | ipsutils/config.py | 3 |
1 files changed, 2 insertions, 1 deletions
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(): |