mirror of
https://github.com/revanced/Apktool.git
synced 2024-12-12 05:47:46 +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) {
|
||||
throw new AndrolibException(ex);
|
||||
}
|
||||
mAaptBinary.setExecutable(true);
|
||||
return mAaptBinary;
|
||||
if (mAaptBinary.setExecutable(true)) {
|
||||
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 {
|
||||
|
Loading…
Reference in New Issue
Block a user