mirror of
https://github.com/revanced/Apktool.git
synced 2024-11-16 09:29:24 +01:00
[skip] check result of .setExecutable()
This commit is contained in:
parent
cf443b1097
commit
49b6bf70e4
@ -818,8 +818,12 @@ final public class AndrolibResources {
|
|||||||
} catch (BrutException ex) {
|
} catch (BrutException ex) {
|
||||||
throw new AndrolibException(ex);
|
throw new AndrolibException(ex);
|
||||||
}
|
}
|
||||||
mAaptBinary.setExecutable(true);
|
if (mAaptBinary.setExecutable(true)) {
|
||||||
return mAaptBinary;
|
return mAaptBinary;
|
||||||
|
}
|
||||||
|
|
||||||
|
System.err.println("Can't set aapt binary as executable");
|
||||||
|
throw new AndrolibException("Can't set aapt binary as executable");
|
||||||
}
|
}
|
||||||
|
|
||||||
public File getAndroidResourcesFile() throws AndrolibException {
|
public File getAndroidResourcesFile() throws AndrolibException {
|
||||||
|
Loading…
Reference in New Issue
Block a user