Skip to content

Commit

Permalink
lix requires file:// for non-repos
Browse files Browse the repository at this point in the history
  • Loading branch information
jldec committed Apr 30, 2024
1 parent 6cc91c3 commit 1c7795e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion inlang/source-code/cli/src/utilities/getInlangProject.ts
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ export async function getInlangProject(args: { projectPath: string }): Promise<I
console.error(
`Could not find repository root for path ${projectPath}, falling back to direct fs access`
)
repoRoot = baseDirectory
repoRoot = 'file://' + baseDirectory
}
const repo = await openRepository(repoRoot, {
nodeishFs: fs,
Expand Down

0 comments on commit 1c7795e

Please sign in to comment.