Skip to content
Snippets Groups Projects
Commit 934f25f9 authored by Andrew Rowley's avatar Andrew Rowley
Browse files

See if this helps us to see what is installed!

parent 41120ead
No related branches found
No related tags found
No related merge requests found
......@@ -6,6 +6,7 @@
from spack.package import *
from spack.fetch_strategy import URLFetchStrategy
from spack.store import find
from llnl.util import tty
import os
_JAR_URL = "https://github.com/SpiNNakerManchester/JavaSpiNNaker/releases/download/7.0.0/spinnaker-exe.jar"
......@@ -43,6 +44,7 @@ class PySpinnfrontendcommon(PythonPackage):
install_tree("JavaSpiNNaker", site_packages)
# Test where things are now installed
tty.debug(f"Checking contents of {site_packages}")
for root, dirnames, filenames in os.walk(site_packages):
for filename in filenames:
print(os.path.join(root, filename))
tty.debug(os.path.join(root, filename))
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