mirror of
https://github.com/revanced/Apktool.git
synced 2025-01-05 17:45:52 +01:00
fix: add better error message when can't write framework file
This commit is contained in:
parent
a91aad461e
commit
7cf9a95710
@ -984,7 +984,9 @@ final public class AndrolibResources {
|
||||
if (apkOptions.frameworkFolderLocation != null) {
|
||||
LOGGER.severe("Can't create Framework directory: " + dir);
|
||||
}
|
||||
throw new AndrolibException("Can't create directory: " + dir);
|
||||
throw new AndrolibException(String.format(
|
||||
"Can't create directory: (%s). Pass a writable path with --frame-path {DIR}. ", dir
|
||||
));
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user