Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/feature/devonfw#139-feature-for-…
Browse files Browse the repository at this point in the history
…making-symlinks-relative' into feature/devonfw#139-feature-for-making-symlinks-relative
  • Loading branch information
MattesMrzik committed Dec 11, 2023
2 parents 18ec98f + bbeb7e4 commit 736935c
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions cli/src/main/java/com/devonfw/tools/ide/io/FileAccess.java
Original file line number Diff line number Diff line change
Expand Up @@ -60,8 +60,8 @@ public interface FileAccess {

/**
* Creates a symbolic link to the given {@link Path}. If the given {@code targetLink} already exists and is a symbolic
* link or a Windows junction, it will be replaced. In case of missing privileges, Windows Junctions may be * used,
* which must point to absolute paths. The created link will therefore be absolute.
* link or a Windows junction, it will be replaced. In case of missing privileges, Windows Junctions may be used as fallback,
* which must point to absolute paths. The created link will therefore be absolute in such case.
*
* @param source the source {@link Path} to link to.
* @param targetLink the {@link Path} where the symbolic link shall be created pointing to {@code source}.
Expand All @@ -72,8 +72,8 @@ public interface FileAccess {
/**
* Creates a relative symbolic link to the given {@link Path}. If the given {@code targetLink} already exists and is a
* symbolic link or a Windows junction, it will be replaced. In case of missing privileges, Windows Junctions may be
* used, which must point to absolute paths. Hence, the created link will be absolute instead of relative.
*
* used as fallback, which must point to absolute paths. Hence, the created link will be absolute instead of relative
* in such case.
*
* @param source the source {@link Path file or folder} to link to.
* @param targetLink the {@link Path} where the symbolic link shall be created pointing to {@code source}.
Expand Down

0 comments on commit 736935c

Please sign in to comment.