summaryrefslogtreecommitdiff
path: root/src/Repo.hs
diff options
context:
space:
mode:
authorRoman Smrž <roman.smrz@seznam.cz>2025-11-08 22:24:27 +0100
committerRoman Smrž <roman.smrz@seznam.cz>2025-11-08 22:24:27 +0100
commitf449ef32e31e10b9412e932f0181ccfa4314e728 (patch)
tree3322d63a909615cb18874796bb0adcb93b21d66d /src/Repo.hs
parentd8354b8f1b2bbb6d911070ca9822c7e4fbd88bca (diff)
Allow repo declaration without giving path
Diffstat (limited to 'src/Repo.hs')
-rw-r--r--src/Repo.hs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Repo.hs b/src/Repo.hs
index 09e577b..c878b1e 100644
--- a/src/Repo.hs
+++ b/src/Repo.hs
@@ -72,7 +72,7 @@ getRepoWorkDir GitRepo {..} = takeDirectory gitDir
data DeclaredRepo = DeclaredRepo
{ repoName :: RepoName
- , repoPath :: FilePath
+ , repoPath :: Maybe FilePath
}
newtype RepoName = RepoName Text