We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9b1ca54 commit 8ffe486Copy full SHA for 8ffe486
src/formatter/htmlbeautifier.ts
@@ -42,9 +42,9 @@ export default class HtmlBeautifier {
42
...shellOptions,
43
});
44
45
- const fullCommand = `${this.exe} ${this.cliOptions.join(" ")} (cwd: ${
46
- vscode.workspace.rootPath || __dirname
47
- }) with custom env: ${JSON.stringify(this.customEnvVars)}`;
+ const fullCommand = `${this.exe} ${this.cliOptions.join(
+ " "
+ )} with custom env: ${JSON.stringify(this.customEnvVars)}`;
48
this.logChannel.info(`Formatting ERB with command: ${fullCommand}`);
49
50
if (!htmlbeautifier.stdin || !htmlbeautifier.stdout) {
0 commit comments