| Index: scripts/slave/annotated_run.py
|
| diff --git a/scripts/slave/annotated_run.py b/scripts/slave/annotated_run.py
|
| index b5ded0ccaf6c742c90307f52495add2d8ce53bdd..f31e14e82d99fe07960ad2e0c6f7f16ba472fd34 100755
|
| --- a/scripts/slave/annotated_run.py
|
| +++ b/scripts/slave/annotated_run.py
|
| @@ -198,7 +198,7 @@ def main():
|
| if item == recipe_util.PropertyPlaceholder:
|
| new_cmd.extend(property_placeholder_lst)
|
| else:
|
| - new_cmd.append(item)
|
| + new_cmd.append(str(item))
|
| step['cmd'] = new_cmd
|
| if 'cwd' in step:
|
| [new_cwd] = expand_root_placeholder(root, [step['cwd']])
|
|
|