Skip to content
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
2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
run: conda create --quiet --name black pyflakes

- name: Check Spelling
uses: crate-ci/typos@7ad296c72fa8265059cc03d1eda562fbdfcd6df2 # v1.9.0
uses: crate-ci/typos@18bebe05c9c1076df911429745a0a1a2642e6b03 # v1.32.0
with:
files: ./docs/getting_started/ ./docs/index.rst

Expand Down
2 changes: 1 addition & 1 deletion docs/getting_started/installation.rst
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ Installation
============

Singularity Registry HPC (shpc) can be installed from pypi, or from source.
In all cases, a module technology is required such as `lmod (install intstructions) <https://lmod.readthedocs.io/en/latest/030_installing.html>`_
In all cases, a module technology is required such as `lmod (install instructions) <https://lmod.readthedocs.io/en/latest/030_installing.html>`_
or `environment modules (install instructions) <https://modules.readthedocs.io/en/latest/INSTALL.html>`_.
Having module software installed means that the ``module`` command should be on your path.
Once you are ready to install shpc along your module software, it's recommended that you create a virtual environment, if you have not already
Expand Down
2 changes: 1 addition & 1 deletion docs/getting_started/user-guide.rst
Original file line number Diff line number Diff line change
Expand Up @@ -212,7 +212,7 @@ variable replacement. A summary table of variables is included below, and then f
- Format string for module commands exec,shell,run (not aliases) can include ``{{ registry }}``, ``{{ repository }}``, ``{{ tool }}`` and ``{{ version }}``
- ``'{{ tool }}'``
* - bindpaths
- string with comma separated list of paths to binds. If set, expored to SINGULARITY_BINDPATH
- string with comma separated list of paths to binds. If set, exported to SINGULARITY_BINDPATH
- null
* - singularity_shell
- exported to SINGULARITY_SHELL
Expand Down
4 changes: 0 additions & 4 deletions example/google-cloud-storage/google-cloud-storage.py
Original file line number Diff line number Diff line change
Expand Up @@ -82,8 +82,6 @@ def run(self):
"""
Run the repo task, uploading the data and taking a pause if needed.
"""
global cli

# First check that it doesn't already exist
bucket_name = self.bucket.replace("gs://", "")
bucket_name, bucket_subdir = bucket_name.split("/", 1)
Expand Down Expand Up @@ -190,8 +188,6 @@ def main():
if not os.path.exists(args.containers):
sys.exit(f"Path {args.containers} does not exist.")

global cli

# Create the root to install to
print(f"Containers and modules will install to {args.root}")
if not os.path.exists(args.root):
Expand Down