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 f942f0d commit 33813bbCopy full SHA for 33813bb
src/com/inet/gradle/setup/util/TempPath.java
@@ -144,6 +144,11 @@ private void clearTemporaryFolder() throws Exception {
144
*/
145
public static void clearTemporaryFolder( Path tmp ) throws Exception {
146
// Remove temporary folder and content.
147
+ if ( Logging.DEBUG_LOG ) {
148
+ Logging.sysout( "Will not remove path due to debugging: " + tmp.toString() );
149
+ return;
150
+ }
151
+
152
Files.walkFileTree( tmp, new SimpleFileVisitor<Path>() {
153
@Override
154
public FileVisitResult visitFile( Path file, BasicFileAttributes attrs ) throws IOException {
0 commit comments