diff options
-rw-r--r-- | README.md | 4 | ||||
-rw-r--r-- | pdbs/.gitignore | 1 | ||||
-rw-r--r-- | pdbs/README | 1 | ||||
-rw-r--r-- | symbols/.gitignore | 2 | ||||
-rw-r--r-- | symbols/README | 1 | ||||
-rw-r--r-- | vscache/.gitignore | 3 | ||||
-rw-r--r-- | vscache/README | 1 | ||||
-rw-r--r-- | windows-env.cabal (renamed from wintmp.cabal) | 20 |
8 files changed, 12 insertions, 21 deletions
@@ -1,5 +1,5 @@ -Windows "tmp" directory -======================= +Windows environment variables +============================= A collection of scripts to manage my environmental variables, created mainly to: diff --git a/pdbs/.gitignore b/pdbs/.gitignore deleted file mode 100644 index eadd157..0000000 --- a/pdbs/.gitignore +++ /dev/null @@ -1 +0,0 @@ -*.pdb diff --git a/pdbs/README b/pdbs/README deleted file mode 100644 index 43a9584..0000000 --- a/pdbs/README +++ /dev/null @@ -1 +0,0 @@ -I store my .pdb files in this directory diff --git a/symbols/.gitignore b/symbols/.gitignore deleted file mode 100644 index f8eecb8..0000000 --- a/symbols/.gitignore +++ /dev/null @@ -1,2 +0,0 @@ -*.pdb/ -pingme.txt diff --git a/symbols/README b/symbols/README deleted file mode 100644 index 25ad431..0000000 --- a/symbols/README +++ /dev/null @@ -1 +0,0 @@ -Downloaded Windows symbols are stored in this directory diff --git a/vscache/.gitignore b/vscache/.gitignore deleted file mode 100644 index 514e47a..0000000 --- a/vscache/.gitignore +++ /dev/null @@ -1,3 +0,0 @@ -* -!.gitignore -!README diff --git a/vscache/README b/vscache/README deleted file mode 100644 index 703fb3d..0000000 --- a/vscache/README +++ /dev/null @@ -1 +0,0 @@ -This directory is used as the fallback location for Visual Studio cache files diff --git a/wintmp.cabal b/windows-env.cabal index a8a8437..ec9bca8 100644 --- a/wintmp.cabal +++ b/windows-env.cabal @@ -1,8 +1,8 @@ -name: wintmp +name: windows-env version: 0.1.0.0 -synopsis: Windows "tmp" directory +synopsis: Windows environment variables description: Please see README.md -homepage: https://github.com/egor-tensin/wintmp +homepage: https://github.com/egor-tensin/windows-env license: MIT license-file: LICENSE.txt author: Egor Tensin @@ -26,7 +26,7 @@ executable add_path ghc-options: -threaded -rtsopts -with-rtsopts=-N build-depends: base , optparse-applicative - , wintmp + , windows-env default-language: Haskell2010 executable fix_nt_symbol_path @@ -34,7 +34,7 @@ executable fix_nt_symbol_path main-is: FixNtSymbolPath.hs ghc-options: -threaded -rtsopts -with-rtsopts=-N build-depends: base, directory, filepath - , wintmp + , windows-env default-language: Haskell2010 executable list_path @@ -43,7 +43,7 @@ executable list_path ghc-options: -threaded -rtsopts -with-rtsopts=-N build-depends: base, directory , optparse-applicative - , wintmp + , windows-env default-language: Haskell2010 executable remove_path @@ -52,7 +52,7 @@ executable remove_path ghc-options: -threaded -rtsopts -with-rtsopts=-N build-depends: base , optparse-applicative - , wintmp + , windows-env default-language: Haskell2010 executable set_env @@ -61,7 +61,7 @@ executable set_env ghc-options: -threaded -rtsopts -with-rtsopts=-N build-depends: base , optparse-applicative - , wintmp + , windows-env default-language: Haskell2010 executable unset_env @@ -70,9 +70,9 @@ executable unset_env ghc-options: -threaded -rtsopts -with-rtsopts=-N build-depends: base , optparse-applicative - , wintmp + , windows-env default-language: Haskell2010 source-repository head type: git - location: https://github.com/egor-tensin/wintmp + location: https://github.com/egor-tensin/windows-env |