Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix typos in *.hs files #10613

Merged
merged 2 commits into from
Dec 5, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Cabal-syntax/src/Distribution/Backpack.hs
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ import qualified Data.Set as Set
-- represent it as a 'DefiniteUnitId uid'.
--
-- For a source component using Backpack, however, there is more
-- structure as components may be parametrized over some signatures, and
-- structure as components may be parameterized over some signatures, and
-- these \"holes\" may be partially or wholly filled.
--
-- OpenUnitId plays an important role when we are mix-in linking,
Expand Down
2 changes: 1 addition & 1 deletion Cabal-syntax/src/Distribution/Fields/Field.hs
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

-- | Cabal-like file AST types: 'Field', 'Section' etc
--
-- These types are parametrized by an annotation.
-- These types are parameterized by an annotation.
module Distribution.Fields.Field
( -- * Cabal file
Field (..)
Expand Down
2 changes: 1 addition & 1 deletion Cabal-syntax/src/Distribution/Fields/LexerMonad.hs
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ toPWarnings =
Just $ PWarning PWTLexTab (NE.head poss) $ "Tabs used as indentation at " ++ intercalate ", " (NE.toList $ fmap showPos poss)
toWarning LexInconsistentIndentation poss =
Just $ PWarning PWTInconsistentIndentation (NE.head poss) $ "Inconsistent indentation. Indentation jumps at lines " ++ intercalate ", " (NE.toList $ fmap (show . positionRow) poss)
-- LexBraces warning about using { } delimeters is not reported as parser warning.
-- LexBraces warning about using { } delimiters is not reported as parser warning.
toWarning LexBraces _ =
Nothing

Expand Down
2 changes: 1 addition & 1 deletion Cabal-syntax/src/Distribution/PackageDescription/Parsec.hs
Original file line number Diff line number Diff line change
Expand Up @@ -679,7 +679,7 @@ processImports v fromBuildInfo commonStanzas = go []
fields' <- catMaybes <$> traverse (warnImport v) fields
pure $ (fields', \x -> foldr (mergeCommonStanza fromBuildInfo) x acc)

-- | Warn on "import" fields, also map to Maybe, so errorneous fields can be filtered
-- | Warn on "import" fields, also map to Maybe, so erroneous fields can be filtered
warnImport :: CabalSpecVersion -> Field Position -> ParseResult (Maybe (Field Position))
warnImport v (Field (Name pos name) _) | name == "import" = do
if specHasCommonStanzas v == NoCommonStanzas
Expand Down
2 changes: 1 addition & 1 deletion Cabal-syntax/src/Distribution/SPDX/LicenseId.hs
Original file line number Diff line number Diff line change
Expand Up @@ -677,7 +677,7 @@ data LicenseId
deriving (Eq, Ord, Enum, Bounded, Show, Read, Typeable, Data)

instance Binary LicenseId where
-- Word16 is encoded in big endianess
-- Word16 is encoded in big endianness
-- https://github.com/kolmodin/binary/blob/master/src/Data/Binary/Class.hs#L220-LL227
put = Binary.putWord16be . fromIntegral . fromEnum
get = do
Expand Down
2 changes: 1 addition & 1 deletion Cabal-syntax/src/Distribution/Types/VersionInterval.hs
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ isVersion0 = (==) version0
stage1 :: VersionRange -> [VersionInterval]
stage1 = cataVersionRange alg
where
-- version range leafs transform into singleton intervals
-- version range leaves transform into singleton intervals
alg (ThisVersionF v) = [VersionInterval (LowerBound v InclusiveBound) (UpperBound v InclusiveBound)]
alg (LaterVersionF v) = [VersionInterval (LowerBound v ExclusiveBound) NoUpperBound]
alg (OrLaterVersionF v) = [VersionInterval (LowerBound v InclusiveBound) NoUpperBound]
Expand Down
2 changes: 1 addition & 1 deletion Cabal-tests/tests/ParserTests.hs
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ errorTest fp = cabalGoldenTest fp correct $ do

return $ toUTF8BS $ case x of
Right gpd ->
"UNXPECTED SUCCESS\n" ++
"UNEXPECTED SUCCESS\n" ++
showGenericPackageDescription gpd
Left (v, errs) ->
unlines $ ("VERSION: " ++ show v) : map (showPError fp) (NE.toList errs)
Expand Down
2 changes: 1 addition & 1 deletion Cabal-tests/tests/UnitTests/Distribution/SPDX.hs
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ shouldReject = map License
--
-- * "WITH exc" exceptions are rejected
--
-- * There should be a way to interpert license as (conjunction of)
-- * There should be a way to interpret license as (conjunction of)
-- OSI-accepted licenses or CC0
--
isAcceptableLicense :: License -> Bool
Expand Down
8 changes: 4 additions & 4 deletions Cabal/src/Distribution/GetOpt.hs
Original file line number Diff line number Diff line change
Expand Up @@ -134,11 +134,11 @@ zipDefault ad bd (a : as) (b : bs) = (a, b) : zipDefault ad bd as bs
-- | Pretty printing of short options.
-- * With required arguments can be given as:
-- @-w PATH or -wPATH (but not -w=PATH)@
-- This is dislayed as:
-- This is displayed as:
-- @-w PATH or -wPATH@
-- * With optional but default arguments can be given as:
-- @-j or -jNUM (but not -j=NUM or -j NUM)@
-- This is dislayed as:
-- This is displayed as:
-- @-j[NUM]@
fmtShort :: ArgDescr a -> Char -> String
fmtShort (NoArg _) so = "-" ++ [so]
Expand All @@ -152,11 +152,11 @@ fmtShort (OptArg _ _ ad) so =
-- | Pretty printing of long options.
-- * With required arguments can be given as:
-- @--with-compiler=PATH (but not --with-compiler PATH)@
-- This is dislayed as:
-- This is displayed as:
-- @--with-compiler=PATH@
-- * With optional but default arguments can be given as:
-- @--jobs or --jobs=NUM (but not --jobs NUM)@
-- This is dislayed as:
-- This is displayed as:
-- @--jobs[=NUM]@
fmtLong :: ArgDescr a -> String -> String
fmtLong (NoArg _) lo = "--" ++ lo
Expand Down
6 changes: 3 additions & 3 deletions Cabal/src/Distribution/PackageDescription/Check/Common.hs
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ partitionDeps ads ns ds = do
-- shared targets that match
fads = filter (flip elem dqs . fst) ads
-- the names of such targets
inNam = nub $ map fst fads :: [UnqualComponentName]
inName = nub $ map fst fads :: [UnqualComponentName]
-- the dependencies of such targets
inDep = concatMap snd fads :: [Dependency]

Expand All @@ -96,7 +96,7 @@ partitionDeps ads ns ds = do
-- text, ← no warning, inherited
-- monadacme ← warning!
let fFun d =
notElem (unqualName d) inNam
notElem (unqualName d) inName
&& notElem
(unqualName d)
(map unqualName inDep)
Expand All @@ -116,7 +116,7 @@ partitionDeps ads ns ds = do
-- for important dependencies like base).
checkPVP
:: Monad m
=> (String -> PackageCheck) -- Warn message dependend on name
=> (String -> PackageCheck) -- Warn message depends on name
-- (e.g. "base", "Cabal").
-> [Dependency]
-> CheckM m ()
Expand Down
2 changes: 1 addition & 1 deletion Cabal/src/Distribution/PackageDescription/Check/Monad.hs
Original file line number Diff line number Diff line change
Expand Up @@ -242,7 +242,7 @@ tellCM ck = do
-- There are some errors which, even though severe, will
-- be allowed by Hackage *if* under a non-default flag.
isErrAllowable :: PackageCheck -> Bool
isErrAllowable c = case extractCheckExplantion c of
isErrAllowable c = case extractCheckExplanation c of
(WErrorUnneeded _) -> True
(JUnneeded _) -> True
(FDeferTypeErrorsUnneeded _) -> True
Expand Down
20 changes: 10 additions & 10 deletions Cabal/src/Distribution/PackageDescription/Check/Warning.hs
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ module Distribution.PackageDescription.Check.Warning
, ppPackageCheck
, ppCheckExplanationId
, isHackageDistError
, extractCheckExplantion
, extractCheckExplanation
philderbeast marked this conversation as resolved.
Show resolved Hide resolved
, filterPackageChecksById
, filterPackageChecksByIdString
) where
Expand Down Expand Up @@ -124,7 +124,7 @@ filterPackageChecksById cs is = filter ff cs
ff c =
flip notElem is
. checkExplanationId
. extractCheckExplantion
. extractCheckExplanation
$ c

-- | Filter Package Check by Check explanation /string/.
Expand Down Expand Up @@ -293,14 +293,14 @@ data CheckExplanation
-- to be a ad hoc monoid.

-- Convenience.
extractCheckExplantion :: PackageCheck -> CheckExplanation
extractCheckExplantion (PackageBuildImpossible e) = e
extractCheckExplantion (PackageBuildWarning e) = e
extractCheckExplantion (PackageDistSuspicious e) = e
extractCheckExplantion (PackageDistSuspiciousWarn e) = e
extractCheckExplantion (PackageDistInexcusable e) = e
extractCheckExplanation :: PackageCheck -> CheckExplanation
extractCheckExplanation (PackageBuildImpossible e) = e
extractCheckExplanation (PackageBuildWarning e) = e
extractCheckExplanation (PackageDistSuspicious e) = e
extractCheckExplanation (PackageDistSuspiciousWarn e) = e
extractCheckExplanation (PackageDistInexcusable e) = e

-- | Identifier for the speficic 'CheckExplanation'. This ensures `--ignore`
-- | Identifier for the specific 'CheckExplanation'. This ensures `--ignore`
-- can output a warning on unrecognised values.
-- ☞ N.B.: should be kept in sync with 'CheckExplanation'.
data CheckExplanationID
Expand Down Expand Up @@ -590,7 +590,7 @@ type CheckExplanationIDString = String

-- A one-word identifier for each CheckExplanation
--
-- ☞ N.B: if you modify anything here, remeber to change the documentation
-- ☞ N.B: if you modify anything here, remember to change the documentation
-- in @doc/cabal-commands.rst@!
ppCheckExplanationId :: CheckExplanationID -> CheckExplanationIDString
ppCheckExplanationId CIParseWarning = "parser-warning"
Expand Down
2 changes: 1 addition & 1 deletion Cabal/src/Distribution/Simple/Build/PackageInfoModule.hs
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
-- Generating the PackageInfo_pkgname module.
--
-- This is a module that Cabal generates for the benefit of packages. It
-- enables them to find their package informations.
-- enables them to find their package information.
module Distribution.Simple.Build.PackageInfoModule
( generatePackageInfoModule
) where
Expand Down
2 changes: 1 addition & 1 deletion Cabal/src/Distribution/Simple/BuildToolDepends.hs
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ import qualified Data.Map as Map
import Distribution.Package
import Distribution.PackageDescription

-- | Same as 'desugarBuildTool', but requires atomic informations (package
-- | Same as 'desugarBuildTool', but requires atomic information (package
-- name, executable names) instead of a whole 'PackageDescription'.
desugarBuildToolSimple
:: PackageName
Expand Down
4 changes: 2 additions & 2 deletions Cabal/src/Distribution/Simple/Command.hs
Original file line number Diff line number Diff line change
Expand Up @@ -624,8 +624,8 @@ data Command action
-- | Mark command as hidden. Hidden commands don't show up in the 'progname
-- help' or 'progname --help' output.
hiddenCommand :: Command action -> Command action
hiddenCommand (Command name synopsys f _cmdType) =
Command name synopsys f HiddenCommand
hiddenCommand (Command name synopsis f _cmdType) =
Command name synopsis f HiddenCommand

commandAddAction
:: CommandUI flags
Expand Down
2 changes: 1 addition & 1 deletion Cabal/src/Distribution/Simple/Compiler.hs
Original file line number Diff line number Diff line change
Expand Up @@ -482,7 +482,7 @@ waySupported :: String -> Compiler -> Maybe Bool
waySupported way comp =
case compilerFlavor comp of
GHC ->
-- Infomation about compiler ways is only accurately reported after
-- Information about compiler ways is only accurately reported after
-- 9.10.1. Which is useful as this is before profiling dynamic support
-- was introduced. (See GHC #24881)
if compilerVersion comp >= mkVersion [9, 10, 1]
Expand Down
2 changes: 1 addition & 1 deletion Cabal/src/Distribution/Simple/Program/Types.hs
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@ data ConfiguredProgram = ConfiguredProgram
, programMonitorFiles :: [FilePath]
-- ^ In addition to the 'programLocation' where the program was found,
-- these are additional locations that were looked at. The combination
-- of ths found location and these not-found locations can be used to
-- of this found location and these not-found locations can be used to
-- monitor to detect when the re-configuring the program might give a
-- different result (e.g. found in a different location).
}
Expand Down
2 changes: 1 addition & 1 deletion Cabal/src/Distribution/Simple/Setup/Config.hs
Original file line number Diff line number Diff line change
Expand Up @@ -1102,7 +1102,7 @@ configureArgs bcHack flags =
(Flag hc, NoFlag) -> [hc_flag_name ++ prettyShow hc]
(NoFlag, NoFlag) -> []
hc_flag_name
-- TODO kill off thic bc hack when defaultUserHooks is removed.
-- TODO kill off this bc hack when defaultUserHooks is removed.
| bcHack = "--with-hc="
| otherwise = "--with-compiler="
optFlag name config_field = case config_field flags of
Expand Down
2 changes: 1 addition & 1 deletion Cabal/src/Distribution/Simple/SetupHooks/Rule.hs
Original file line number Diff line number Diff line change
Expand Up @@ -723,7 +723,7 @@ on the build-system side, we don't have access to any of the types, and thus don
how much to read in order to reconstruct the associated opaque 'ByteString'.
To ensure we always serialise/deserialise including the length of the data,
the 'ScopedArgument' newtype is used, with a custom 'Binary' instance that always
incldues the length. We use this newtype:
includes the length. We use this newtype:

- in the definition of 'CommandData', for arguments to rules,
- in the definition of 'DepsRes', for the result of dynamic dependency computations.
Expand Down
2 changes: 1 addition & 1 deletion Cabal/src/Distribution/Simple/Utils.hs
Original file line number Diff line number Diff line change
Expand Up @@ -388,7 +388,7 @@ die' verbosity msg = withFrozenCallStack $ do
=<< pure . addErrorPrefix
=<< prefixWithProgName msg

-- Type which will be a wrapper for cabal -expections and cabal-install exceptions
-- Type which will be a wrapper for cabal -exceptions and cabal-install exceptions
data VerboseException a = VerboseException CallStack POSIXTime Verbosity a
deriving (Show, Typeable)

Expand Down
2 changes: 1 addition & 1 deletion Cabal/src/Distribution/Types/LocalBuildInfo.hs
Original file line number Diff line number Diff line change
Expand Up @@ -447,7 +447,7 @@ buildWays lbi =
let
-- enable-library-profiling (enable (static profiling way)) .p_o
-- enable-shared (enabled dynamic way) .dyn_o
-- enable-profiling-shared (enable dyanmic profilng way) .p_dyn_o
-- enable-profiling-shared (enable dynamic profilng way) .p_dyn_o
-- enable-library-vanilla (enable vanilla way) .o
--
-- enable-executable-dynamic => build dynamic executables
Expand Down
2 changes: 1 addition & 1 deletion Cabal/src/Distribution/Utils/IOData.hs
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ instance KnownIODataMode LBS.ByteString where

-- | 'IOData' Wrapper for 'System.IO.hPutStr' and 'System.IO.hClose'
--
-- This is the dual operation ot 'hGetIODataContents',
-- This is the dual operation to 'hGetIODataContents',
-- and consequently the handle is closed with `hClose`.
--
-- /Note:/ this performs lazy-IO.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -58,9 +58,9 @@ isOutOfBounds :: Int -> String -> String -> Bool
isOutOfBounds range a b = not $ withinRange range a b

testRange :: Int -> [String] -> String -> Assertion
testRange range elems erronousElement = assertBool "String should be out of bounds to make a spelling suggestion" (isOutOfBounds range erronousElement suggestion)
testRange range elems erroneousElement = assertBool "String should be out of bounds to make a spelling suggestion" (isOutOfBounds range erroneousElement suggestion)
where
suggestion = mostSimilarElement erronousElement elems
suggestion = mostSimilarElement erroneousElement elems

outOfBounds :: [String]
outOfBounds =
Expand Down
2 changes: 1 addition & 1 deletion cabal-install/src/Distribution/Client/Check.hs
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ readGenericPackageDescriptionCheck verbosity fpath = do
dieWithException verbosity ParseError
Right x -> return (warnings, x)

-- | Checks a packge for common errors. Returns @True@ if the package
-- | Checks a package for common errors. Returns @True@ if the package
-- is fit to upload to Hackage, @False@ otherwise.
-- Note: must be called with the CWD set to the directory containing
-- the '.cabal' file.
Expand Down
4 changes: 2 additions & 2 deletions cabal-install/src/Distribution/Client/CmdInstall.hs
Original file line number Diff line number Diff line change
Expand Up @@ -390,7 +390,7 @@ installAction flags@NixStyleFlags{extraFlags, configFlags, installFlags, project
-- NOTE: CmdInstall and project local packages.
--
-- CmdInstall always installs packages from a source distribution that, in case of unpackage
-- pacakges, is created automatically. This is implemented in getSpecsAndTargetSelectors.
-- packages, is created automatically. This is implemented in getSpecsAndTargetSelectors.
--
-- This has the inconvenience that the planner will consider all packages as non-local
-- (see `ProjectPlanning.shouldBeLocal`) and that any project or cli configuration will
Expand Down Expand Up @@ -1031,7 +1031,7 @@ installLibraries

-- See ticket #8894. This is safe to include any nonreinstallable boot pkg,
-- but the particular package users will always expect to be in scope without specific installation
-- is base, so that they can access prelude, regardles of if they specifically asked for it.
-- is base, so that they can access prelude, regardless of if they specifically asked for it.
globalPackages :: [PackageName]
globalPackages = mkPackageName <$> ["base"]

Expand Down
4 changes: 2 additions & 2 deletions cabal-install/src/Distribution/Client/CmdRepl.hs
Original file line number Diff line number Diff line change
Expand Up @@ -408,7 +408,7 @@ replAction flags@NixStyleFlags{extraFlags = r@ReplFlags{..}, ..} targetStrings g

return (buildCtx, compiler, configureReplOptions & lReplOptionsFlags %~ (++ repl_flags), targets)

-- Multi Repl implemention see: https://well-typed.com/blog/2023/03/cabal-multi-unit/ for
-- Multi Repl implementation see: https://well-typed.com/blog/2023/03/cabal-multi-unit/ for
-- a high-level overview about how everything fits together.
if Set.size (distinctTargetComponents targets) > 1
then withTempDirectoryEx verbosity tempFileOptions distDir "multi-out" $ \dir' -> do
Expand Down Expand Up @@ -440,7 +440,7 @@ replAction flags@NixStyleFlags{extraFlags = r@ReplFlags{..}, ..} targetStrings g
let sp = intercalate [searchPathSeparator] (map fst (sortBy (comparing @Int snd) $ Map.toList (combine_search_paths all_paths)))
-- HACK: Just combine together all env overrides, placing the most common things last

-- ghc program with overriden PATH
-- ghc program with overridden PATH
(ghcProg, _) <- requireProgram verbosity ghcProgram (pkgConfigCompilerProgs (elaboratedShared buildCtx'))
let ghcProg' = ghcProg{programOverrideEnv = [("PATH", Just sp)]}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -168,7 +168,7 @@ organizeByRepos
-> [a]
-> Either String [(a, CombineStrategy)]
organizeByRepos (ActiveRepos xs0) sel ys0 =
-- here we use lazyness to do only one traversal
-- here we use laziness to do only one traversal
let (rest, result) = case go rest xs0 ys0 of
Right (rest', result') -> (rest', Right result')
Left err -> ([], Left err)
Expand Down
2 changes: 1 addition & 1 deletion cabal-install/src/Distribution/Client/JobControl.hs
Original file line number Diff line number Diff line change
Expand Up @@ -174,7 +174,7 @@ readAllTChan qvar = go []
Nothing -> return (reverse xs)
Just x -> go (x : xs)

-- | Make a 'JobControl' where the parallism is controlled by a semaphore.
-- | Make a 'JobControl' where the parallelism is controlled by a semaphore.
--
-- This uses the GHC -jsem option to allow GHC to take additional semaphore slots
-- if we are not using them all.
Expand Down
4 changes: 2 additions & 2 deletions cabal-install/src/Distribution/Client/ProjectPlanning.hs
Original file line number Diff line number Diff line change
Expand Up @@ -632,7 +632,7 @@ rebuildInstallPlan

-- Configuring other programs.
--
-- Having configred the compiler, now we configure all the remaining
-- Having configured the compiler, now we configure all the remaining
-- programs. This is to check we can find them, and to monitor them for
-- changes.
--
Expand Down Expand Up @@ -902,7 +902,7 @@ reportPlanningFailure projectConfig comp platform pkgSpecifiers =
buildReports
platform
where
-- TODO may want to handle the projectConfigLogFile paramenter here, or just remove it entirely?
-- TODO may want to handle the projectConfigLogFile parameter here, or just remove it entirely?

reportFailure = Cabal.fromFlag . projectConfigReportPlanningFailure . projectConfigBuildOnly $ projectConfig
pkgids = mapMaybe theSpecifiedPackage pkgSpecifiers
Expand Down
8 changes: 4 additions & 4 deletions cabal-install/src/Distribution/Client/ScriptUtils.hs
Original file line number Diff line number Diff line change
Expand Up @@ -414,8 +414,8 @@ withTemporaryTempDirectory act = newEmptyMVar >>= \m -> bracket (getMkTmp m) (rm
return tmpDir
rmTmp m _ = tryTakeMVar m >>= maybe (return ()) (handleDoesNotExist () . removeDirectoryRecursive)

scriptComponenetName :: IsString s => FilePath -> s
scriptComponenetName scriptPath = fromString cname
scriptComponentName :: IsString s => FilePath -> s
scriptComponentName scriptPath = fromString cname
where
cname = "script-" ++ map censor (takeFileName scriptPath)
censor c
Expand All @@ -437,7 +437,7 @@ scriptDistDirParams scriptPath ctx compiler platform =
, distParamOptimization = fromFlagOrDefault NormalOptimisation optimization
}
where
cn = scriptComponenetName scriptPath
cn = scriptComponentName scriptPath
cid = mkComponentId $ prettyShow fakePackageId <> "-inplace-" <> prettyShow cn
optimization = (packageConfigOptimization . projectConfigLocalPackages . projectConfig) ctx

Expand Down Expand Up @@ -475,7 +475,7 @@ updateContextAndWriteProjectFile ctx scriptPath scriptExecutable = do
sourcePackage =
fakeProjectSourcePackage projectRoot
& lSrcpkgDescription . L.condExecutables
.~ [(scriptComponenetName scriptPath, CondNode executable (targetBuildDepends $ buildInfo executable) [])]
.~ [(scriptComponentName scriptPath, CondNode executable (targetBuildDepends $ buildInfo executable) [])]
executable =
scriptExecutable
& L.modulePath .~ absScript
Expand Down
Loading
Loading