Skip to content

Commit 7e04477

Browse files
committed
Rebuild dist/
1 parent 28f6a06 commit 7e04477

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

dist/index.js

+3-1
Original file line numberDiff line numberDiff line change
@@ -335,7 +335,9 @@ try {
335335
}
336336

337337
const homeSsh = homePath + '/.ssh';
338-
fs.mkdirSync(homeSsh, { recursive: true });
338+
if (!fs.existsSync(buildDir)) {
339+
fs.mkdirSync(homeSsh, { recursive: true });
340+
}
339341

340342
console.log("Starting ssh-agent");
341343

0 commit comments

Comments
 (0)