Skip to content

Commit

Permalink
[TSCBasic] Make init public (#476)
Browse files Browse the repository at this point in the history
This is mismatching the other init which is public.
  • Loading branch information
aciidgh authored Jul 11, 2024
1 parent 15fafa7 commit 12fa2cf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Sources/TSCBasic/Lock.swift
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ public final class FileLock {
/// Create an instance of FileLock at the path specified
///
/// Note: The parent directory path should be a valid directory.
internal init(at lockFile: AbsolutePath) {
public init(at lockFile: AbsolutePath) {
self.lockFile = lockFile
}

Expand Down

0 comments on commit 12fa2cf

Please sign in to comment.