Tweak release things

This commit is contained in:
Gregory Schier
2024-07-29 14:38:57 -07:00
parent d586ec5fb4
commit 45cb1ef0fe
3 changed files with 9 additions and 7 deletions

View File

@@ -52,7 +52,7 @@ mkdirSync(destDir, {recursive: true});
const tmpDir = path.join(__dirname, 'tmp', Date.now().toString());
// Download GitHub release artifact
const {filePath} = await new Downloader({url, directory: tmpDir,}).download();
const {filePath} = await new Downloader({url, directory: tmpDir}).download();
// Decompress to the same directory
await decompress(filePath, tmpDir, {});