diff --git a/dist/index.js b/dist/index.js index 3f288c7..9f0c0df 100644 --- a/dist/index.js +++ b/dist/index.js @@ -335,7 +335,9 @@ try { } const homeSsh = homePath + '/.ssh'; - fs.mkdirSync(homeSsh, { recursive: true }); + if (!fs.existsSync(buildDir)) { + fs.mkdirSync(homeSsh, { recursive: true }); + } console.log("Starting ssh-agent");