This commit is contained in:
Todd Gamblin 2016-08-30 01:43:48 -07:00
parent 41675e5ed6
commit 05545a2528

View File

@ -70,6 +70,9 @@
# Generate package list using spack command
#
with open('package_list.rst', 'w') as plist_file:
subprocess.check_output(
[spack_root + '/bin/spack', 'package-list'])
subprocess.Popen(
[spack_root + '/bin/spack', 'package-list'], stdout=plist_file)