sylabs / singularity-admindocs

Admin documentation for SingularityCE

Home Page:https://sylabs.io/docs/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Download SingularityCE from a release: typo in BASH snippet

azat-badretdin opened this issue · comments

https://sylabs.io/guides/3.8/admin-guide/installation.html#installation-on-linux

Download SingularityCE from a release

BASH Snippet

export VERSION=3.8.0 && # adjust this as necessary \
    wget https://github.com/sylabs/singularity/releases/download/v${VERSION}/singularity-ce-${VERSION}.tar.gz && \
    tar -xzf singularity-ce-${VERSION}.tar.gz && \
    cd singularity-ce-{$VERSION}

has a typo in the last line. It should be


cd singularity-ce-"${VERSION}"

This has been corrected in the master branch, I'll note to backport it.