Copy binfile instead of renaming to prevent cross-device linking

Signed-off-by: Yuri Norwood <106889957+norwd@users.noreply.github.com>
This commit is contained in:
Yuri Norwood 2022-11-07 14:56:06 +13:00 committed by GitHub
parent a29a69bbe7
commit 0b2515da35
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -41,7 +41,7 @@ async function downloadRelease(octokit, os, org, repo, release, token) {
// Extract the archive into the install target
console.log("Unpacking archive file...")
execSync(`${extract} "${archive}"`)
fs.rename(binfile, `${binpath}/${binfile}`, function (err) {
fs.copyFile(binfile, `${binpath}/${binfile}`, function (err) {
if (err) {
throw err;
}