We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 44d031f commit c772b46Copy full SHA for c772b46
src/main/java/com/glencoesoftware/bioformats2raw/Converter.java
@@ -1215,7 +1215,9 @@ public Integer call() throws Exception {
1215
boolean success = tmpdirCheck.setExecutable(true);
1216
if (!success || !tmpdirCheck.canExecute()) {
1217
String msg = System.getProperty("java.io.tmpdir") +
1218
- " is noexec; fix it or specify a different java.io.tmpdir";
+ " is noexec; fix it or specify a different java.io.tmpdir." +
1219
+ " See https://github.com/glencoesoftware/bioformats2raw/" +
1220
+ "blob/master/README.md#temporary-directory-usage for details";
1221
if (getWarnNoExec()) {
1222
LOGGER.warn(msg);
1223
}
0 commit comments