diff options
author | Jordan Galby <67924449+Jordan474@users.noreply.github.com> | 2022-05-19 16:45:18 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-05-19 14:45:18 +0000 |
commit | 8fe39be3df368d8169c23b91bec04350b580dbfb (patch) | |
tree | 7341cabc37028ba393783df7353703aaf1583345 | |
parent | f5250da611ec2639d9e99d0f1a335cfe996090a3 (diff) | |
download | spack-8fe39be3df368d8169c23b91bec04350b580dbfb.tar.gz spack-8fe39be3df368d8169c23b91bec04350b580dbfb.tar.bz2 spack-8fe39be3df368d8169c23b91bec04350b580dbfb.tar.xz spack-8fe39be3df368d8169c23b91bec04350b580dbfb.zip |
Don't try to mkdir upstream directory when nonexistent (#30744)
When an upstream is specified but the directory does not exist, don't
create the directory for it, it might not be yours.
-rw-r--r-- | lib/spack/spack/database.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/spack/spack/database.py b/lib/spack/spack/database.py index 1b10965a42..fc791595d6 100644 --- a/lib/spack/spack/database.py +++ b/lib/spack/spack/database.py @@ -356,10 +356,10 @@ class Database(object): self.prefix_fail_path = os.path.join(self._db_dir, 'prefix_failures') # Create needed directories and files - if not os.path.exists(self._db_dir): + if not is_upstream and not os.path.exists(self._db_dir): fs.mkdirp(self._db_dir) - if not os.path.exists(self._failure_dir) and not is_upstream: + if not is_upstream and not os.path.exists(self._failure_dir): fs.mkdirp(self._failure_dir) self.is_upstream = is_upstream |