mirror of
https://github.com/GoTestTools/gotestfmt-action.git
synced 2026-02-16 20:51:46 +00:00
Attempt to prevent existing directories causing problems
Signed-off-by: Yuri Norwood <106889957+norwd@users.noreply.github.com>
This commit is contained in:
parent
41182fa2c4
commit
8f54926f6c
1 changed files with 1 additions and 1 deletions
2
index.js
2
index.js
|
|
@ -39,7 +39,7 @@ async function downloadRelease(octokit, os, org, repo, release, token) {
|
||||||
|
|
||||||
// Ensure the that the install target exists
|
// Ensure the that the install target exists
|
||||||
console.log("Preparing install target...")
|
console.log("Preparing install target...")
|
||||||
fs.mkdirSync(binpath)
|
fs.mkdirSync(binpath, { recursive: true })
|
||||||
|
|
||||||
// Extract the archive into the install target
|
// Extract the archive into the install target
|
||||||
console.log("Unpacking archive file...")
|
console.log("Unpacking archive file...")
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue