Skip to content

Commit 0b220b1

Browse files
committed
removed console log
1 parent 1b472d2 commit 0b220b1

1 file changed

Lines changed: 0 additions & 1 deletion

File tree

src/util/scripts.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@ function runScript(scriptCommand: string): Promise<string> {
77
const scriptPath = scriptParts[scriptParts.length -1];
88
const absoluteScriptPath = resolvePath(scriptPath);
99
const joinedCommand = scriptParts.slice(0, scriptParts.length -1).join(" ") + " " + absoluteScriptPath;
10-
console.log('joined command', joinedCommand);
1110
return new Promise((resolve, reject) => {
1211
execFile(joinedCommand, [], { cwd: resolvePath('${workspaceFolder}') }, (error, stdout, stderr) => {
1312
if (error) {

0 commit comments

Comments
 (0)