Skip to content

Commit 526d554

Browse files
committedMar 6, 2025··
fix(ssh): fix implicit any error
1 parent 7828841 commit 526d554

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎src/ssh.ts

+1-1
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)
Please sign in to comment.