diff options
Diffstat (limited to 'etc')
| -rwxr-xr-x | etc/teams.scm | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/etc/teams.scm b/etc/teams.scm index 4697a60124f..6b8e88583c2 100755 --- a/etc/teams.scm +++ b/etc/teams.scm | |||
| @@ -1833,8 +1833,12 @@ and REV-END, two git revision strings." | |||
| 1833 | # usually suited as a reviewer.\n\n" | 1833 | # usually suited as a reviewer.\n\n" |
| 1834 | port) | 1834 | port) |
| 1835 | (for-each (lambda (team) | 1835 | (for-each (lambda (team) |
| 1836 | (display (team->codeowners-snippet team) port) | 1836 | (let ((scope (team->codeowners-snippet team))) |
| 1837 | (newline port)) | 1837 | ;; Some teams, like Mentors and Community have no scope, |
| 1838 | ;; which would result in seemingly arbitrary newlines. | ||
| 1839 | (unless (string-null? scope) | ||
| 1840 | (display scope port) | ||
| 1841 | (newline port)))) | ||
| 1838 | teams))) | 1842 | teams))) |
| 1839 | 1843 | ||
| 1840 | 1844 | ||
