From 4889aa67de9d8e0f9d69f12b14861204e1f4ed17 Mon Sep 17 00:00:00 2001 From: easybuild <easybuild@login2.barbora.it4i.cz> Date: Tue, 27 Aug 2024 13:27:55 +0200 Subject: [PATCH] fix --- easyblocks/v/visit.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/easyblocks/v/visit.py b/easyblocks/v/visit.py index 47f1c18..556bb23 100644 --- a/easyblocks/v/visit.py +++ b/easyblocks/v/visit.py @@ -31,9 +31,11 @@ class EB_VisIt(EasyBlock): """Simply run installation script with configuration options""" self.log.info("Changing VisIt installer permission") os.chdir(self.cfg['start_dir']) - chmod_cmd = "chmod 755 visit-install3_1_0" + #chmod_cmd = "chmod 755 visit-install3_3_3" + chmod_cmd = "chmod 755 visit-install2_13_3" run_cmd(chmod_cmd, log_all=True) - install_cmd = "./visit-install3_1_0 -c none 3.1.0 \ + #install_cmd = "./visit-install3_3_3 -c none 3.3.3 \ + install_cmd = "./visit-install2_13_3 -c none 2.13.3 \ linux-x86_64-rhel7 %s" % self.installdir self.log.info("Running VisIt installer") run_cmd(install_cmd, log_all=True) -- GitLab