using curl -s here will not download anything due to a redirect (302), so the -L parameter needs to be passed to successfully complete the redirect.
In addition, the documentation states that this url is a direct replacement to the get.nextflow.io url and as such implies the output from curl should be piped to bash as in the standard installation. However, to actually complete the installation, -o parameter needs to be passed to curl to produce the nextflow file which can then be chmod'd to be executable.
The documentation should remove the text and simply provide the correct set of commands for installing the stand alone version instead of referencing the standard installation procedure.
Corrected documentation:
The installer for the dist distribution can be found on the GitHub releases page, under the "Assets" section for a specific release. The installation procedure is shown below:
Bug report
Documentation for the standalone distribution doesn't work as specified.
Expected behavior and actual behavior
Documentation states:
"The installation procedure is the same as for the standard distribution, only using this URL instead of https://get.nextflow.io:"
using
curl -s
here will not download anything due to a redirect (302), so the-L
parameter needs to be passed to successfully complete the redirect.In addition, the documentation states that this url is a direct replacement to the get.nextflow.io url and as such implies the output from curl should be piped to bash as in the standard installation. However, to actually complete the installation,
-o
parameter needs to be passed to curl to produce thenextflow
file which can then be chmod'd to be executable.The documentation should remove the text and simply provide the correct set of commands for installing the stand alone version instead of referencing the standard installation procedure.
Corrected documentation:
The installer for the dist distribution can be found on the GitHub releases page, under the "Assets" section for a specific release. The installation procedure is shown below:
Steps to reproduce the problem
Program output
It doesn't do anything
Environment
Additional context
(Add any other context about the problem here)