diff options
author | Matthew LeGendre <legendre1@llnl.gov> | 2016-04-08 11:06:14 -0700 |
---|---|---|
committer | Matthew LeGendre <legendre1@llnl.gov> | 2016-04-08 11:06:14 -0700 |
commit | 1af88be3712d1b6090a2dde5d7a68405f7372ca7 (patch) | |
tree | 2d1486f5c59343a2932d5863020d5dd349af9ba6 | |
parent | e73caad0d76fe8710ae054f4bcdbad1a649dbb92 (diff) | |
download | spack-1af88be3712d1b6090a2dde5d7a68405f7372ca7.tar.gz spack-1af88be3712d1b6090a2dde5d7a68405f7372ca7.tar.bz2 spack-1af88be3712d1b6090a2dde5d7a68405f7372ca7.tar.xz spack-1af88be3712d1b6090a2dde5d7a68405f7372ca7.zip |
Spack was no longer using $TMPDIR for its stage area at LLNL. Spack's directory search was unnecessarily putting candidates that contained your username at the end of its search list.
-rw-r--r-- | lib/spack/spack/__init__.py | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/lib/spack/spack/__init__.py b/lib/spack/spack/__init__.py index aee11f061f..9108e1d0e3 100644 --- a/lib/spack/spack/__init__.py +++ b/lib/spack/spack/__init__.py @@ -136,9 +136,7 @@ for path in _tmp_candidates: # don't add a second username if it's already unique by user. if not _tmp_user in path: tmp_dirs.append(join_path(path, '%u', 'spack-stage')) - -for path in _tmp_candidates: - if not path in tmp_dirs: + else: tmp_dirs.append(join_path(path, 'spack-stage')) # Whether spack should allow installation of unsafe versions of |