Update vendor scripts again

This commit is contained in:
Gregory Schier
2024-07-28 16:04:05 -07:00
parent 430599d8b8
commit 3001bafb7f
2 changed files with 0 additions and 6 deletions

View File

@@ -57,9 +57,6 @@ mkdirSync(destDir, {recursive: true});
// Decompress to the same directory
await decompress(filePath, tmpDir, {});
// Remove the original archive
rmSync(filePath);
// Copy binary
const binSrc = path.join(tmpDir, SRC_BIN_MAP[key]);
cpSync(binSrc, binDest);

View File

@@ -46,9 +46,6 @@ mkdirSync(dstDir, {recursive: true});
// Decompress to the same directory
await decompress(filePath, tmpDir, {});
// Remove the original archive
rmSync(filePath);
// Copy binary
const binSrc = path.join(tmpDir, SRC_BIN_MAP[key]);
const binDst = path.join(dstDir, DST_BIN_MAP[key]);