1
0
mirror of https://github.com/termux/termux-app synced 2024-06-20 08:07:09 +00:00

Disable error flashes when clearing TMPDIR directory on termux app exit

Rooted users were getting `Clearing $TMPDIR directory at path "/data/data/com.termux/files/usr/tmp" failed` flash errors when they exited Termux if directories existed in TMPDIR that only had `root` user ownership, since they would fail to get cleared since clearing was being run as the termux app user instead of as the root user. Now errors will only be logged to logcat.
This commit is contained in:
agnostic-apollo 2021-05-01 23:31:02 +05:00
parent b84854af92
commit b268b6edf7

View File

@ -157,7 +157,7 @@ public class ShellUtils {
String errmsg;
errmsg = FileUtils.clearDirectory(context, "$TMPDIR", FileUtils.getCanonicalPath(TermuxConstants.TERMUX_TMP_PREFIX_DIR_PATH, null, false));
if (errmsg != null) {
Logger.logErrorAndShowToast(context, errmsg);
Logger.logError(errmsg);
}
}