Change file permissions via octal

This commit is contained in:
Thomas A. Christensen II 2022-06-13 15:29:04 -05:00
parent 4994858c8d
commit 8c78e9efb5
Signed by: millironx
GPG key ID: 139C07724802BC5D

View file

@ -91,7 +91,7 @@ async function install_nextflow(url, version) {
const nf_path = `${temp_install_dir}/nextflow`; const nf_path = `${temp_install_dir}/nextflow`;
io.mv(nf_dl_path, nf_path); io.mv(nf_dl_path, nf_path);
fs.chmod(nf_path, "+x"); fs.chmod(nf_path, "0711");
return temp_install_dir; return temp_install_dir;
} }