Skip to content

Commit

Permalink
Remove commented code #1426
Browse files Browse the repository at this point in the history
  • Loading branch information
muuki88 committed Jul 8, 2021
1 parent ddd404e commit a6b853d
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -200,7 +200,7 @@ object Archives {
*/
def xz(f: File): File = {
val par = f.getParentFile
sys.process.Process(Seq("xz", /*"-9e",*/ "-S", ".xz", f.getAbsolutePath), Some(par)).! match {
sys.process.Process(Seq("xz", "-S", ".xz", f.getAbsolutePath), Some(par)).! match {
case 0 => ()
case n => sys.error("Error xz-ing " + f + ". Exit code: " + n)
}
Expand Down

0 comments on commit a6b853d

Please sign in to comment.