Skip to content

Commit b1202a1

Browse files
Fix permissions
Add read permission so we can execute the file. Signed-off-by: Richard Scott <5149834+richard-scott@users.noreply.github.com>
1 parent b7fa6f4 commit b1202a1

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

nextflow

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -169,7 +169,7 @@ function install() {
169169
local action="a=${2:-default}"
170170
get "$NXF_BASE/$version/nextflow?$action" "$tmpfile" "$1" || exit $?
171171
mv "$tmpfile" "$1" || exit $?
172-
chmod +x "$1" || exit $?
172+
chmod +rx "$1" || exit $?
173173
bash "$1" -download || exit $?
174174
echo ''
175175
echo -e $'Nextflow installation completed. Please note:'

0 commit comments

Comments
 (0)