Skip to content
Snippets Groups Projects
Commit d9c51915 authored by Todd Gamblin's avatar Todd Gamblin
Browse files

Fix issue with path to Spack.

parent fc748eb3
No related branches found
No related tags found
No related merge requests found
...@@ -52,7 +52,7 @@ ...@@ -52,7 +52,7 @@
# Add the Spack bin directory to the path so that we can use its output in docs. # Add the Spack bin directory to the path so that we can use its output in docs.
spack_root = '../../..' spack_root = '../../..'
os.environ['SPACK_ROOT'] = spack_root os.environ['SPACK_ROOT'] = spack_root
os.environ['PATH'] += os.pathsep + '$SPACK_ROOT/bin' os.environ['PATH'] += '%s%s/bin' % (os.pathsep, spack_root)
# Get the spack version for use in the docs # Get the spack version for use in the docs
spack_version = subprocess.Popen( spack_version = subprocess.Popen(
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment