diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2017-03-26 15:31:08 +0300 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2017-03-26 15:31:08 +0300 |
commit | 136d7d82cdab45b50cafc7c3f53cac7805e3cb7c (patch) | |
tree | a99c6bba50ade7cbb55fac0b53608cb60f2c8725 /windows-env.cabal | |
parent | rename directories (diff) | |
download | windows-env-136d7d82cdab45b50cafc7c3f53cac7805e3cb7c.tar.gz windows-env-136d7d82cdab45b50cafc7c3f53cac7805e3cb7c.zip |
put utility modules to bin/Utils/
Diffstat (limited to 'windows-env.cabal')
-rw-r--r-- | windows-env.cabal | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/windows-env.cabal b/windows-env.cabal index b7d4d89..876cb5a 100644 --- a/windows-env.cabal +++ b/windows-env.cabal @@ -36,7 +36,7 @@ library executable addpath hs-source-dirs: bin main-is: AddPath.hs - other-modules: Prompt, PromptMessage + other-modules: Utils.Prompt, Utils.PromptMessage ghc-options: -Wall -Werror -threaded -rtsopts -with-rtsopts=-N build-depends: base , optparse-applicative @@ -47,7 +47,7 @@ executable addpath executable paths hs-source-dirs: bin main-is: ListPaths.hs - other-modules: Prompt, PromptMessage + other-modules: Utils.Prompt, Utils.PromptMessage ghc-options: -Wall -Werror -threaded -rtsopts -with-rtsopts=-N build-depends: base, directory , optparse-applicative @@ -58,7 +58,7 @@ executable paths executable delpath hs-source-dirs: bin main-is: RemovePath.hs - other-modules: Prompt, PromptMessage + other-modules: Utils.Prompt, Utils.PromptMessage ghc-options: -Wall -Werror -threaded -rtsopts -with-rtsopts=-N build-depends: base , optparse-applicative @@ -69,7 +69,7 @@ executable delpath executable setenv hs-source-dirs: bin main-is: SetEnv.hs - other-modules: Prompt, PromptMessage + other-modules: Utils.Prompt, Utils.PromptMessage ghc-options: -Wall -Werror -threaded -rtsopts -with-rtsopts=-N build-depends: base , optparse-applicative @@ -80,7 +80,7 @@ executable setenv executable delenv hs-source-dirs: bin main-is: UnsetEnv.hs - other-modules: Prompt, PromptMessage + other-modules: Utils.Prompt, Utils.PromptMessage ghc-options: -Wall -Werror -threaded -rtsopts -with-rtsopts=-N build-depends: base , optparse-applicative |