This commit is contained in:
Harmen Stoppels 2023-12-07 18:19:55 +01:00 committed by GitHub
parent b9f63ab40b
commit 5a7e691ae2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -30,6 +30,8 @@ def current_host_platform():
current_platform = spack.platforms.Darwin()
elif "Windows" in platform.system():
current_platform = spack.platforms.Windows()
elif "FreeBSD" in platform.system():
current_platform = spack.platforms.FreeBSD()
return current_platform