Fixed some small things

This commit is contained in:
Alessandro Autiero
2022-10-16 02:08:01 +02:00
parent 968739de9e
commit 699367200f
147 changed files with 953 additions and 54005 deletions

View File

@@ -117,7 +117,11 @@ Future<void> downloadArchiveBuild(String archiveUrl, String destination,
var output = Directory(destination);
await output.create(recursive: true);
var shell = Shell(workingDirectory: internalBinariesDirectory);
var shell = Shell(
commandVerbose: false,
commentVerbose: false,
workingDirectory: internalBinariesDirectory
);
await shell.run("./winrar.exe x ${tempFile.path} *.* \"${output.path}\"");
} finally {
if (await tempFile.exists()) {