mirror of
https://github.com/webfactory/ssh-agent.git
synced 2026-03-15 07:49:07 +08:00
Compare commits
5 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
8a99c6c0c1 | ||
|
|
23e7834981 | ||
|
|
7e04477f79 | ||
|
|
28f6a06f87 | ||
|
|
9a01299151 |
@@ -10,6 +10,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
||||
### Fixed
|
||||
|
||||
* Fix path used to execute ssh-agent in cleanup.js to respect custom paths set by input (#235)
|
||||
* Fix running with the .ssh directory already existing (#234)
|
||||
|
||||
## v0.9.0 [2024-02-06]
|
||||
|
||||
|
||||
4
dist/index.js
vendored
4
dist/index.js
vendored
@@ -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");
|
||||
|
||||
|
||||
Reference in New Issue
Block a user