Skip to content

Commit 60c4645

Browse files
authored
Fix formatting
1 parent fe8b1ee commit 60c4645

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

bin/cli.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ async function main() {
2929
if (parsingFlags && arg === "-e" && i + 1 < args.length) {
3030
const envVar = args[++i];
3131
const equalsIndex = envVar.indexOf("=");
32-
32+
3333
if (equalsIndex !== -1) {
3434
const key = envVar.substring(0, equalsIndex);
3535
const value = envVar.substring(equalsIndex + 1);
@@ -119,4 +119,4 @@ main()
119119
.catch((e) => {
120120
console.error(e);
121121
process.exit(1);
122-
});
122+
});

0 commit comments

Comments
 (0)