diff options
-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(): |