aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
authorEgor Tensin <Egor.Tensin@gmail.com>2017-03-26 19:03:03 +0300
committerEgor Tensin <Egor.Tensin@gmail.com>2017-03-26 19:03:03 +0300
commitb20d44c618f370a1998c70dd5708d9bbe4ed1c80 (patch)
tree0ec7e019648955a77e70163e6becdb06e78ca823
parentput utility modules to bin/Utils/ (diff)
downloadwindows-env-b20d44c618f370a1998c70dd5708d9bbe4ed1c80.tar.gz
windows-env-b20d44c618f370a1998c70dd5708d9bbe4ed1c80.zip
rename directories
-rw-r--r--app/AddPath.hs (renamed from bin/AddPath.hs)0
-rw-r--r--app/ListPaths.hs (renamed from bin/ListPaths.hs)0
-rw-r--r--app/RemovePath.hs (renamed from bin/RemovePath.hs)0
-rw-r--r--app/SetEnv.hs (renamed from bin/SetEnv.hs)0
-rw-r--r--app/UnsetEnv.hs (renamed from bin/UnsetEnv.hs)0
-rw-r--r--app/Utils/Prompt.hs (renamed from bin/Utils/Prompt.hs)0
-rw-r--r--app/Utils/PromptMessage.hs (renamed from bin/Utils/PromptMessage.hs)0
-rw-r--r--src/WindowsEnv.hs (renamed from lib/WindowsEnv.hs)0
-rw-r--r--src/WindowsEnv/Environment.hs (renamed from lib/WindowsEnv/Environment.hs)0
-rw-r--r--src/WindowsEnv/Registry.hs (renamed from lib/WindowsEnv/Registry.hs)0
-rw-r--r--src/WindowsEnv/Utils.hs (renamed from lib/WindowsEnv/Utils.hs)0
-rw-r--r--windows-env.cabal12
12 files changed, 6 insertions, 6 deletions
diff --git a/bin/AddPath.hs b/app/AddPath.hs
index 683b82f..683b82f 100644
--- a/bin/AddPath.hs
+++ b/app/AddPath.hs
diff --git a/bin/ListPaths.hs b/app/ListPaths.hs
index 666423f..666423f 100644
--- a/bin/ListPaths.hs
+++ b/app/ListPaths.hs
diff --git a/bin/RemovePath.hs b/app/RemovePath.hs
index 6f2174b..6f2174b 100644
--- a/bin/RemovePath.hs
+++ b/app/RemovePath.hs
diff --git a/bin/SetEnv.hs b/app/SetEnv.hs
index 5948d3e..5948d3e 100644
--- a/bin/SetEnv.hs
+++ b/app/SetEnv.hs
diff --git a/bin/UnsetEnv.hs b/app/UnsetEnv.hs
index 98b52e3..98b52e3 100644
--- a/bin/UnsetEnv.hs
+++ b/app/UnsetEnv.hs
diff --git a/bin/Utils/Prompt.hs b/app/Utils/Prompt.hs
index 51b3f0c..51b3f0c 100644
--- a/bin/Utils/Prompt.hs
+++ b/app/Utils/Prompt.hs
diff --git a/bin/Utils/PromptMessage.hs b/app/Utils/PromptMessage.hs
index 37fc1e6..37fc1e6 100644
--- a/bin/Utils/PromptMessage.hs
+++ b/app/Utils/PromptMessage.hs
diff --git a/lib/WindowsEnv.hs b/src/WindowsEnv.hs
index e306507..e306507 100644
--- a/lib/WindowsEnv.hs
+++ b/src/WindowsEnv.hs
diff --git a/lib/WindowsEnv/Environment.hs b/src/WindowsEnv/Environment.hs
index 8bfb449..8bfb449 100644
--- a/lib/WindowsEnv/Environment.hs
+++ b/src/WindowsEnv/Environment.hs
diff --git a/lib/WindowsEnv/Registry.hs b/src/WindowsEnv/Registry.hs
index da889d4..da889d4 100644
--- a/lib/WindowsEnv/Registry.hs
+++ b/src/WindowsEnv/Registry.hs
diff --git a/lib/WindowsEnv/Utils.hs b/src/WindowsEnv/Utils.hs
index c852229..c852229 100644
--- a/lib/WindowsEnv/Utils.hs
+++ b/src/WindowsEnv/Utils.hs
diff --git a/windows-env.cabal b/windows-env.cabal
index 876cb5a..abea108 100644
--- a/windows-env.cabal
+++ b/windows-env.cabal
@@ -21,7 +21,7 @@ extra-source-files: README.md
cabal-version: >=1.10
library
- hs-source-dirs: lib
+ hs-source-dirs: src
exposed-modules: WindowsEnv, WindowsEnv.Environment
other-modules: WindowsEnv.Registry, WindowsEnv.Utils
ghc-options: -Wall -Werror
@@ -34,7 +34,7 @@ library
default-language: Haskell2010
executable addpath
- hs-source-dirs: bin
+ hs-source-dirs: app
main-is: AddPath.hs
other-modules: Utils.Prompt, Utils.PromptMessage
ghc-options: -Wall -Werror -threaded -rtsopts -with-rtsopts=-N
@@ -45,7 +45,7 @@ executable addpath
default-language: Haskell2010
executable paths
- hs-source-dirs: bin
+ hs-source-dirs: app
main-is: ListPaths.hs
other-modules: Utils.Prompt, Utils.PromptMessage
ghc-options: -Wall -Werror -threaded -rtsopts -with-rtsopts=-N
@@ -56,7 +56,7 @@ executable paths
default-language: Haskell2010
executable delpath
- hs-source-dirs: bin
+ hs-source-dirs: app
main-is: RemovePath.hs
other-modules: Utils.Prompt, Utils.PromptMessage
ghc-options: -Wall -Werror -threaded -rtsopts -with-rtsopts=-N
@@ -67,7 +67,7 @@ executable delpath
default-language: Haskell2010
executable setenv
- hs-source-dirs: bin
+ hs-source-dirs: app
main-is: SetEnv.hs
other-modules: Utils.Prompt, Utils.PromptMessage
ghc-options: -Wall -Werror -threaded -rtsopts -with-rtsopts=-N
@@ -78,7 +78,7 @@ executable setenv
default-language: Haskell2010
executable delenv
- hs-source-dirs: bin
+ hs-source-dirs: app
main-is: UnsetEnv.hs
other-modules: Utils.Prompt, Utils.PromptMessage
ghc-options: -Wall -Werror -threaded -rtsopts -with-rtsopts=-N