diff --git a/conf.py b/conf.py index 53bb7421..236a66e6 100644 --- a/conf.py +++ b/conf.py @@ -126,7 +126,8 @@ def copy_sw_file(app, exception): src = '/tmp/software_list_group.json' dest = os.path.join(app.builder.outdir, 'software/software_list/', 'software_list_group.json') - shutil.copy(src, dest) + if os.path.exists(src): + shutil.copy(src, dest) def setup(app): '''Function to setup sphinx customizations.''' diff --git a/software/software_list/index.rst b/software/software_list/index.rst index 40e6879e..673bdbb1 100644 --- a/software/software_list/index.rst +++ b/software/software_list/index.rst @@ -15,7 +15,6 @@ the most recent scan, but has been seen previously in the last 60 days. A module with the tag ``e4s`` gets its Spack build recipe from the Extreme-Scale Scientific Software Stack (E4S). -| .. _Module Usage Example: **Module Usage Example**