summaryrefslogtreecommitdiff
path: root/src/Command.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/Command.hs
parentd8354b8f1b2bbb6d911070ca9822c7e4fbd88bca (diff)
Allow repo declaration without giving path
Diffstat (limited to 'src/Command.hs')
-rw-r--r--src/Command.hs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Command.hs b/src/Command.hs
index 0b1c790..30b0df0 100644
--- a/src/Command.hs
+++ b/src/Command.hs
@@ -36,7 +36,7 @@ import Repo
data CommonOptions = CommonOptions
{ optJobs :: Int
- , optRepo :: [ DeclaredRepo ]
+ , optRepo :: [ ( RepoName, FilePath ) ]
}
defaultCommonOptions :: CommonOptions