We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fe8b1ee commit 60c4645Copy full SHA for 60c4645
bin/cli.js
@@ -29,7 +29,7 @@ async function main() {
29
if (parsingFlags && arg === "-e" && i + 1 < args.length) {
30
const envVar = args[++i];
31
const equalsIndex = envVar.indexOf("=");
32
-
+
33
if (equalsIndex !== -1) {
34
const key = envVar.substring(0, equalsIndex);
35
const value = envVar.substring(equalsIndex + 1);
@@ -119,4 +119,4 @@ main()
119
.catch((e) => {
120
console.error(e);
121
process.exit(1);
122
- });
+ });
0 commit comments