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 e7ec664 commit d7089c2Copy full SHA for d7089c2
etc/bash_to_fish.mjs
@@ -31,7 +31,7 @@ for await (let line of lines) {
31
const varVal = line.slice('export '.length);
32
const variable = varVal.slice(0, varVal.indexOf('='));
33
const value = varVal.slice(varVal.indexOf('=') + 1);
34
- output.appendFile(`set -x ${variable} ${value}\n`);
+ await output.appendFile(`set -x ${variable} ${value}\n`);
35
}
36
37
output.close();
0 commit comments