()
| 144 | |
| 145 | |
| 146 | def get_help(): |
| 147 | all_tasks = get_all_tasks() |
| 148 | all_tasks.sort() |
| 149 | return ''' |
| 150 | Available targets: |
| 151 | |
| 152 | build / clear |
| 153 | %s |
| 154 | |
| 155 | Issuing 'embuilder build ALL' causes each task to be built. |
| 156 | ''' % '\n '.join(all_tasks) |
| 157 | |
| 158 | |
| 159 | @contextmanager |
no test coverage detected