1
1
mirror of https://github.com/github/semantic.git synced 2025-01-03 04:51:57 +03:00

Accept --no-index to compare two paths

This commit is contained in:
Timothy Clem 2016-09-23 15:46:52 -07:00
parent 265627923b
commit 58d99a76c2

View File

@ -11,6 +11,7 @@ data Arguments = Arguments {
maybeShas :: Both (Maybe P.String),
maybeTimeout :: Maybe Float,
output :: Maybe FilePath,
noIndex :: Bool,
filepaths :: [FilePath] }
deriving (Show)
@ -20,4 +21,5 @@ args sha1 sha2 filePaths format = Arguments { format = format
, filepaths = filePaths
, maybeTimeout = Just 10.0
, output = Nothing
, noIndex = False
}