diff options
author | Michael Kuhn <michael.kuhn@informatik.uni-hamburg.de> | 2020-05-25 18:49:35 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-05-25 18:49:35 +0200 |
commit | f12ae1bcd08db6489cdbf63390fd7cedcf5bf3f3 (patch) | |
tree | bfeb3f44508e4f41522f0c9cf98fc44a95ccd8b7 /etc | |
parent | c4031f04551264d627a3cc6a30b25e005cf1f6b5 (diff) | |
download | spack-f12ae1bcd08db6489cdbf63390fd7cedcf5bf3f3.tar.gz spack-f12ae1bcd08db6489cdbf63390fd7cedcf5bf3f3.tar.bz2 spack-f12ae1bcd08db6489cdbf63390fd7cedcf5bf3f3.tar.xz spack-f12ae1bcd08db6489cdbf63390fd7cedcf5bf3f3.zip |
Fix typo for allow_sgid (#16806)
fixes #14425
The config: prefix should be included in the actual option name and
makes it impossible to change this option.
Diffstat (limited to 'etc')
-rw-r--r-- | etc/spack/defaults/config.yaml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/etc/spack/defaults/config.yaml b/etc/spack/defaults/config.yaml index 4e4b48296c..a5727874ea 100644 --- a/etc/spack/defaults/config.yaml +++ b/etc/spack/defaults/config.yaml @@ -160,4 +160,4 @@ config: # Set to 'false' to allow installation on filesystems that doesn't allow setgid bit # manipulation by unprivileged user (e.g. AFS) - config:allow_sgid: true + allow_sgid: true |