chore: lintfix

This commit is contained in:
Marc 2021-06-05 12:17:39 -04:00
parent bdb158918a
commit 0a0022ead2

View file

@ -15,7 +15,7 @@ async function prepareWorkspace(): Promise<string> {
async function cleanUpWorkspace(paths: string[]): Promise<void> { async function cleanUpWorkspace(paths: string[]): Promise<void> {
await Promise.all( await Promise.all(
paths.map(async path => fs.rmdir(path, { recursive: true })), paths.map(async (path) => fs.rmdir(path, { recursive: true })),
) )
} }