mirror of
https://github.com/MillironX/setup-nextflow.git
synced 2024-11-22 01:46:04 +00:00
Change file permissions via octal
This commit is contained in:
parent
4994858c8d
commit
8c78e9efb5
1 changed files with 1 additions and 1 deletions
2
index.js
2
index.js
|
@ -91,7 +91,7 @@ async function install_nextflow(url, version) {
|
|||
const nf_path = `${temp_install_dir}/nextflow`;
|
||||
|
||||
io.mv(nf_dl_path, nf_path);
|
||||
fs.chmod(nf_path, "+x");
|
||||
fs.chmod(nf_path, "0711");
|
||||
|
||||
return temp_install_dir;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue