diff --git a/src/it/symlink-dont-follow/setup.groovy b/src/it/symlink-dont-follow/setup.groovy index 0c3052e..969faa5 100644 --- a/src/it/symlink-dont-follow/setup.groovy +++ b/src/it/symlink-dont-follow/setup.groovy @@ -36,13 +36,13 @@ for ( pair : pairs ) { File target = new File( basedir, pair[0] ); File link = new File( basedir, pair[1] ); - System.out.println( "Creating symlink " + link + " -> " + target ); + println "Creating symlink " + link + " -> " + target; Path targetPath = target.toPath(); Path linkPath = link.toPath(); Files.createSymbolicLink( (Path) targetPath, (Path) linkPath ); if ( !link.exists() ) { - System.out.println( "Platform does not support symlinks, skipping test." ); + println "Platform does not support symlinks, skipping test."; return; } }