You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
constarg=!this.checkVenv() ? "false" : undefined;// assign any string is fine
31
-
console.log("Waiting for setting venv and Fosslight Scanner");
43
+
this.outputChannel.clear();
44
+
this.outputChannel.show();
45
+
this.outputChannel.appendLine(
46
+
"Waiting for setting venv and Fosslight Scanner"
47
+
);
32
48
constprogressInterval=setInterval(()=>{
33
-
process.stdout.write(".");
49
+
this.outputChannel.append(".");
34
50
},500);// print '.' every 500ms while setting
35
51
36
52
// Will take a long time (about 3 min) when the first install the venv and fs.
@@ -40,7 +56,7 @@ class SystemExecuter {
40
56
"[Error]: Failed to set venv and install Fosslight Scanner.\n\t Please check the resources folder and files are in initial condition.\n\t Or try to reinstall this app."
41
57
);
42
58
}else{
43
-
console.log("Fosslight Scanner is ready to use.");
59
+
this.outputChannel.appendLine("Fosslight Scanner is ready to use.");
0 commit comments