diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2017-06-13 06:21:34 +0300 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2017-06-13 06:21:34 +0300 |
commit | c7094f015773285170c3ae15f2d4cb1f158a6c1a (patch) | |
tree | 2587b9e22f2a5c30ffb55b6ddbacae25e8f54f90 /windows-env.cabal | |
parent | feature registry value type in prompts (diff) | |
download | windows-env-c7094f015773285170c3ae15f2d4cb1f158a6c1a.tar.gz windows-env-c7094f015773285170c3ae15f2d4cb1f158a6c1a.zip |
addpath: detect expandable paths
Diffstat (limited to '')
-rw-r--r-- | windows-env.cabal | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/windows-env.cabal b/windows-env.cabal index 9850c2c..d25e427 100644 --- a/windows-env.cabal +++ b/windows-env.cabal @@ -37,7 +37,7 @@ library executable addpath hs-source-dirs: app main-is: AddPath.hs - other-modules: Utils.Prompt, Utils.PromptMessage + other-modules: Utils.Path, Utils.Prompt, Utils.PromptMessage ghc-options: -Wall -Werror -threaded -rtsopts -with-rtsopts=-N build-depends: base , optparse-applicative @@ -48,9 +48,10 @@ executable addpath executable paths hs-source-dirs: app main-is: ListPaths.hs - other-modules: Utils.Prompt, Utils.PromptMessage + other-modules: Utils.Path, Utils.Prompt, Utils.PromptMessage ghc-options: -Wall -Werror -threaded -rtsopts -with-rtsopts=-N build-depends: base + , directory , optparse-applicative , transformers , windows-env |