We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3034642 commit 94c2fd1Copy full SHA for 94c2fd1
src/main/java/io/zonky/test/db/postgres/util/LinuxUtils.java
@@ -56,6 +56,7 @@ private static String resolveDistributionName() {
56
try (InputStream source = LinuxUtils.class.getResourceAsStream("/sh/detect_linux_distribution.sh")) {
57
target = Files.createTempFile("detect_linux_distribution_", ".sh");
58
Files.copy(source, target, REPLACE_EXISTING);
59
+ target.toFile().deleteOnExit();
60
}
61
62
ProcessBuilder builder = new ProcessBuilder();
0 commit comments