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
.arg('-sccUTF-8')// set charset for for console input/output
410
-
.arg(file);
406
+
const_7z: trm.ToolRunner=tl.tool(_7zPath);
407
+
if(overwriteDest){
408
+
_7z.arg('-aoa');
409
+
}
410
+
411
+
_7z.arg('x')// eXtract files with full paths
412
+
.arg('-bb1')// -bb[0-3] : set output log level
413
+
.arg('-bd')// disable progress indicator
414
+
.arg('-sccUTF-8')// set charset for for console input/output
415
+
.arg(file);
411
416
await_7z.exec();
412
417
}
413
418
else{
414
419
// extract
415
420
letescapedScript=path.join(__dirname,'Invoke-7zdec.ps1').replace(/'/g,"''").replace(/"|\n|\r/g,'');// double-up single quotes, remove double quotes and newlines
0 commit comments