-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: handle relative symbolic links (#98)
* add func to create symbolic link with RelativePath as destination * add failing test with relative sym link * fix handling of relative symbolic link * formatting * add createSymbolicLink with RelativePath to FileSysteming protocol * add private helper func for creating symbolic links with absolute and relative path * formatting * Make authentication optional --------- Co-authored-by: fortmarek <[email protected]>
- Loading branch information
Showing
4 changed files
with
66 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,10 @@ | ||
import ProjectDescription | ||
|
||
let tuist = Tuist(fullHandle: "tuist/FileSystem") | ||
let tuist = Tuist( | ||
fullHandle: "tuist/FileSystem", | ||
project: .tuist( | ||
generationOptions: .options( | ||
optionalAuthentication: true | ||
) | ||
) | ||
) |