From 53ed8a2eb2c0f8eab4c346114c0b777cdf7c9f55 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Roman=20Smr=C5=BE?= Date: Thu, 6 Mar 2025 22:46:22 +0100 Subject: Path option for the checkout command --- src/Command/Checkout.hs | 31 ++++++++++++++++++++++++------- 1 file changed, 24 insertions(+), 7 deletions(-) diff --git a/src/Command/Checkout.hs b/src/Command/Checkout.hs index 1859c05..0ed062d 100644 --- a/src/Command/Checkout.hs +++ b/src/Command/Checkout.hs @@ -5,11 +5,17 @@ module Command.Checkout ( import Data.Text (Text) import Data.Text qualified as T +import System.Console.GetOpt + import Command import Repo -data CheckoutCommand = CheckoutCommand (Maybe RepoName) Text +data CheckoutCommand = CheckoutCommand CheckoutOptions (Maybe RepoName) Text + +data CheckoutOptions = CheckoutOptions + { coPath :: Maybe FilePath + } instance Command CheckoutCommand where commandName _ = "checkout" @@ -21,14 +27,25 @@ instance Command CheckoutCommand where [ "Usage: minici checkout [ []] [