Home
last modified time | relevance | path

Searched refs:tmpFilePath (Results 1 – 1 of 1) sorted by relevance

/expo/tools/src/commands/
H A DAndroidDownloadVersionedAars.ts46 const tmpFilePath = path.join(os.tmpdir(), fileName); constant
47 await pipeline(got.stream(url, { headers }), fs.createWriteStream(tmpFilePath));
48 const fileSize = (await fs.stat(tmpFilePath)).size;
52 await fs.remove(tmpFilePath);
54 await fs.move(tmpFilePath, outputPath, { overwrite: true });