Commit 02c65572 authored by Chris Lamb's avatar Chris Lamb 👀
Browse files

Use --long-form arguments when calling apktool in order to support apktool 3....

Use --long-form arguments when calling apktool in order to support apktool 3. Thanks, linsui! (Closes: Debian:#1140015)
parent 2b17885b
Loading
Loading
Loading
Loading
Loading
+5 −5
Original line number Diff line number Diff line
@@ -72,11 +72,11 @@ class ApkContainer(Archive):
        subprocess.check_call(
            (
                "apktool",
                "d",
                "-f",
                "-k",
                "-m",
                "-o",
                "decode",
                "--force",
                "--keep-broken-res",
                "--match-original",
                "--output",
                self._tmpdir.name,
                self.source.path,
            ),