diff options
author | Peter Scheibel <scheibel1@llnl.gov> | 2016-03-18 17:15:45 -0700 |
---|---|---|
committer | Peter Scheibel <scheibel1@llnl.gov> | 2016-03-18 17:15:45 -0700 |
commit | d632266a40e8d472892991144391b1862231fec0 (patch) | |
tree | 778b8cfc10b4aa77c2934c55e68ded61a03e5f17 /lib | |
parent | fd067dd8b888ac4c2cc6cacec44d2ba978b04e8a (diff) | |
download | spack-d632266a40e8d472892991144391b1862231fec0.tar.gz spack-d632266a40e8d472892991144391b1862231fec0.tar.bz2 spack-d632266a40e8d472892991144391b1862231fec0.tar.xz spack-d632266a40e8d472892991144391b1862231fec0.zip |
move cache to var/spack/cache
Diffstat (limited to 'lib')
-rw-r--r-- | lib/spack/spack/__init__.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/spack/spack/__init__.py b/lib/spack/spack/__init__.py index 22436e46c4..6fb472b15d 100644 --- a/lib/spack/spack/__init__.py +++ b/lib/spack/spack/__init__.py @@ -46,7 +46,7 @@ var_path = join_path(spack_root, "var", "spack") stage_path = join_path(var_path, "stage") repos_path = join_path(var_path, "repos") share_path = join_path(spack_root, "share", "spack") -cache_path = join_path(spack_root, "var", "cache") +cache_path = join_path(var_path, "cache") mkdirp(cache_path) prefix = spack_root |