Skip to content

Fixed warnings with software list when building locally #980

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Aug 1, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -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.'''
Expand Down
1 change: 0 additions & 1 deletion software/software_list/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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**
Expand Down