Skip to content

Commit

Permalink
feat(back): #1200 support hidden files in root
Browse files Browse the repository at this point in the history
- Add support for hidden files in root when using projectPath
  • Loading branch information
dsalaza4 committed Dec 4, 2023
1 parent 0999bb4 commit e06f597
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/args/project-path/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ then
name =
if rel == "/"
then "src"
else builtins.baseNameOf rel;
else builtins.replaceStrings ["/"] ["-"] rel;
path = (builtins.unsafeDiscardStringContext projectSrc) + rel;
})
else abort "projectPath arguments must start with: /, currently it is: ${rel}"

0 comments on commit e06f597

Please sign in to comment.