From b1202a10ddeafb9d06f3e8443ff9519e49b9062e Mon Sep 17 00:00:00 2001 From: Richard Scott <5149834+richard-scott@users.noreply.github.com> Date: Fri, 18 Jul 2025 12:22:52 +0100 Subject: [PATCH] Fix permissions Add read permission so we can execute the file. Signed-off-by: Richard Scott <5149834+richard-scott@users.noreply.github.com> --- nextflow | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nextflow b/nextflow index b0d1fdb146..c27d885745 100755 --- a/nextflow +++ b/nextflow @@ -169,7 +169,7 @@ function install() { local action="a=${2:-default}" get "$NXF_BASE/$version/nextflow?$action" "$tmpfile" "$1" || exit $? mv "$tmpfile" "$1" || exit $? - chmod +x "$1" || exit $? + chmod +rx "$1" || exit $? bash "$1" -download || exit $? echo '' echo -e $'Nextflow installation completed. Please note:'