Skip to content

Commit 5c9f321

Browse files
authored
fix(ssh): fix implicit any error (#2581)
1 parent 3e120e7 commit 5c9f321

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/ssh.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ const getConfigLines = async (
4343
.map((line) => line.split(" ")[1]);
4444

4545
// Get the lines of every include file
46-
const includeLines = await Promise.all(
46+
const includeLines: string[][] = await Promise.all(
4747
includes.map((file) =>
4848
getConfigLines(file, executeShellCommand, home, basePath)
4949
)

0 commit comments

Comments
 (0)