Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 44d1053a authored by Treehugger Robot's avatar Treehugger Robot Committed by Gerrit Code Review
Browse files

Merge "Fix how we delete the symlink" into main

parents af3eaa8f 0f9e09d7
Loading
Loading
Loading
Loading
+1 −3
Original line number Diff line number Diff line
@@ -90,9 +90,7 @@ public class RavenwoodTestStats {
        // Create the "latest" symlink.
        Path symlink = Paths.get(tmpdir, basename + "latest.csv");
        try {
            if (Files.exists(symlink)) {
                Files.delete(symlink);
            }
            Files.deleteIfExists(symlink);
            Files.createSymbolicLink(symlink, Paths.get(mOutputFile.getName()));

        } catch (IOException e) {