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
462
-
.arg(file);
458
+
const_7z: trm.ToolRunner=tl.tool(_7zPath);
459
+
if(overwriteDest){
460
+
_7z.arg('-aoa');
461
+
}
462
+
463
+
_7z.arg('x')// eXtract files with full paths
464
+
.arg('-bb1')// -bb[0-3] : set output log level
465
+
.arg('-bd')// disable progress indicator
466
+
.arg('-sccUTF-8')// set charset for for console input/output
467
+
.arg(file);
463
468
await_7z.exec();
464
469
}
465
470
else{
466
471
// extract
467
472
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