diff options
author | Fabian Kirchner <kirchner@posteo.de> | 2024-03-13 14:22:05 +0100 |
---|---|---|
committer | Alexander Foremny <aforemny@posteo.de> | 2024-03-14 07:07:45 +0100 |
commit | 428e61e202fefe7941a78bd57f5e14d056a74702 (patch) | |
tree | 1816ae0c3d1fe149ba1a402e6172da2b29f7c5a7 | |
parent | dbcc58147027db21beaafab4d3fdbc349a5a22a0 (diff) |
fix: parse base branch argument
-rw-r--r-- | app/Main.hs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/Main.hs b/app/Main.hs index 5a21787..bed31c0 100644 --- a/app/Main.hs +++ b/app/Main.hs @@ -501,7 +501,7 @@ reviewCmd = baseBranchArg :: O.Parser T.Text baseBranchArg = - O.option O.auto $ + O.strOption $ O.long "base" <> O.short 'b' <> O.metavar "BRANCH" |