diff options
author | 2022-02-15 15:52:31 +0000 | |
---|---|---|
committer | 2022-02-15 15:52:31 +0000 | |
commit | b8dbba6c4bafaa27410ba1806eb4c661c4ef4ad7 (patch) | |
tree | 745fa4156832c89cd39307fb22dedfebff291757 /scripts/smoke/cleanup.js | |
parent | fb9a77b77f276f712dae3354bb2e1f8948c72a76 (diff) | |
download | astro-b8dbba6c4bafaa27410ba1806eb4c661c4ef4ad7.tar.gz astro-b8dbba6c4bafaa27410ba1806eb4c661c4ef4ad7.tar.zst astro-b8dbba6c4bafaa27410ba1806eb4c661c4ef4ad7.zip |
[ci] yarn format
Diffstat (limited to 'scripts/smoke/cleanup.js')
-rw-r--r-- | scripts/smoke/cleanup.js | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/scripts/smoke/cleanup.js b/scripts/smoke/cleanup.js index 291083540..37a5f5d29 100644 --- a/scripts/smoke/cleanup.js +++ b/scripts/smoke/cleanup.js @@ -23,19 +23,19 @@ const rootDir = new URL('../../', import.meta.url); /** Runs all smoke tests. */ async function run() { - const dirs = await getChildDirectories(scriptDir) + const dirs = await getChildDirectories(scriptDir); if (dirs.length) { - console.log() + console.log(); for (const dir of await getChildDirectories(scriptDir)) { console.log('🤖', 'Removing', dir.pathname.split('/').at(-1)); - fs.rm(dir, { force: true, recursive: true }) + fs.rm(dir, { force: true, recursive: true }); } } - console.log() + console.log(); console.log('🤖', 'Resetting', 'yarn'); |