Skip to content

Commit eff906a

Browse files
committed
make param optional
1 parent 5c48e66 commit eff906a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/core/src/shared/utilities/pathFind.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,7 @@ export async function findTypescriptCompiler(): Promise<string | undefined> {
115115
* Gets the configured `ssh` path, or falls back to "ssh" (not absolute),
116116
* or tries common locations, or returns undefined.
117117
*/
118-
export async function findSshPath(useCache: boolean): Promise<string | undefined> {
118+
export async function findSshPath(useCache: boolean = true): Promise<string | undefined> {
119119
if (useCache && sshPath !== undefined) {
120120
return sshPath
121121
}

0 commit comments

Comments
 (0)