From 7e04477f79177cae9f6fcf43d8c44b99c2cc0ad7 Mon Sep 17 00:00:00 2001 From: Jano Paetzold Date: Wed, 8 Jan 2025 18:09:13 +0100 Subject: [PATCH] Rebuild dist/ --- dist/index.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) 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");