Skip to content

Commit

Permalink
workaround
Browse files Browse the repository at this point in the history
  • Loading branch information
elharo committed Nov 14, 2024
1 parent 044a9e4 commit a999265
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/it/symlink-dont-follow/setup.bsh
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ for ( String[] pair : pairs )
System.out.println( "Creating symlink " + link + " -> " + target );
Path targetPath = target.toPath();
Path linkPath = link.toPath();
Files.createSymbolicLink( targetPath, linkPath );
Files.createSymbolicLink( (Path) targetPath, (Path) linkPath );
if ( !link.exists() )
{
System.out.println( "Platform does not support symlinks, skipping test." );
Expand Down

0 comments on commit a999265

Please sign in to comment.