Catch more temp dir errors

This commit is contained in:
crschnick 2024-03-24 05:53:34 +00:00
parent a44594ef5f
commit d5442e858d

View file

@ -26,7 +26,7 @@ public class ShellTemp {
try {
// We did not set this in earlier versions. If we are running as a different user, it might fail
Files.setPosixFilePermissions(temp, PosixFilePermissions.fromString("rwxrwxrwx"));
} catch (IOException e) {
} catch (Exception e) {
ErrorEvent.fromThrowable(e).omit().expected().handle();
}
}