Skip to content
Snippets Groups Projects
Commit f246c98c authored by Eleni Mathioulaki's avatar Eleni Mathioulaki
Browse files

fix typo

parent 9735a80f
No related branches found
No related tags found
No related merge requests found
......@@ -191,6 +191,6 @@ class Hxtorch(WafPackage):
with working_dir('spack-test', create=True):
old_pythonpath = os.environ.get('PYTHONPATH', '')
os.environ['PYTHONPATH'] = ':'.join([str(self.prefix.lib), old_pythonpath])
bash = which(bash)
bash = which("bash")
# ignore segfaults for now (exit code 139)
bash('-c', '(python -c "import hxtorch; print(hxtorch.__file__)" || ( test $? -eq 139 && echo "segfault")) || exit $?')
......@@ -168,6 +168,6 @@ class PynnBrainscales(WafPackage):
with working_dir('spack-test', create=True):
old_pythonpath = os.environ.get('PYTHONPATH', '')
os.environ['PYTHONPATH'] = ':'.join([str(self.prefix.lib), old_pythonpath])
bash = which(bash)
bash = which("bash")
# ignore segfaults for now (exit code 139)
bash('-c', '(python -c "import pynn_brainscales; print(pynn_brainscales.__file__)" || ( test $? -eq 139 && echo "segfault")) || exit $?')
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment