Reduce strictness of temp check

This commit is contained in:
crschnick 2023-08-21 20:35:27 +00:00
parent 064ac12b36
commit 018c389534

View file

@ -37,7 +37,7 @@ public class AppChecks {
} catch (InvalidPathException ignored) {
}
if (dir == null || !Files.exists(dir) || !Files.isDirectory(dir) || !Files.isWritable(dir)) {
if (dir == null || !Files.exists(dir) || !Files.isDirectory(dir)) {
ErrorEvent.fromThrowable(
new IOException("Specified temporary directory " + tmpdir + ", set via the environment variable %TEMP% is invalid."))
.term()