Skip to content

Commit

Permalink
Fix envar writer output type
Browse files Browse the repository at this point in the history
  • Loading branch information
pklaschka committed Dec 8, 2024
1 parent a7f7332 commit 6a6e230
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/writers/envar.ts
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ export function initEnv(): Promise<void> {
}

writeFooter(prev: string): string {
return prev.trimEnd() + `\n ]);
return prev.trimEnd() + `\n ]).then(/* convert to Promise<void> */);
}
`;
}
Expand Down

0 comments on commit 6a6e230

Please sign in to comment.