From 24d42b3646894848968e97d4cc279182fafe51f1 Mon Sep 17 00:00:00 2001 From: Elliotte Rusty Harold Date: Fri, 15 Nov 2024 21:53:19 -0500 Subject: [PATCH] groovy --- src/it/symlink-dont-follow/setup.groovy | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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; } }