( redirectDomain: string | null, workDir: string )
| 32 | } |
| 33 | |
| 34 | export async function buildRobots( |
| 35 | redirectDomain: string | null, |
| 36 | workDir: string |
| 37 | ) { |
| 38 | if (redirectDomain) { |
| 39 | await fs.writeFile( |
| 40 | `${workDir}/sitemap/${redirectDomain}/robots.txt`, |
| 41 | createRobotsTxt(redirectDomain) |
| 42 | ); |
| 43 | } |
| 44 | } |
no test coverage detected