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.
2 parents aa8622b + f5edc75 commit c4f2166Copy full SHA for c4f2166
src/lib/ggshield-api.ts
@@ -55,8 +55,6 @@ export function runGGShieldCommand(
55
if (workspace.workspaceFolders?.length || 0 > 0) {
56
options["cwd"] = workspace.workspaceFolders![0].uri.fsPath;
57
}
58
- console.log(ggshieldPath, args, options);
59
-
60
let proc = spawnSync(ggshieldPath, args, options);
61
62
return proc;
@@ -227,7 +225,6 @@ export async function loginGGShield(
227
225
};
228
226
229
let args = ["auth", "login", "--method=web"];
230
231
232
return new Promise((resolve) => {
233
const proc = spawn(ggshieldPath, args, options);
0 commit comments