cocluto v1.0.23 - fixed bug in the mechanism detecting the availbaility of qmod
work related to [https://bugzilla.ipr.univ-rennes.fr/show_bug.cgi?id=3093]
This commit is contained in:
parent
eef27f1dd2
commit
fb5e9fcfa4
|
|
@ -98,7 +98,7 @@ class Sge(IGridEngine):
|
|||
if not self.dry_run:
|
||||
# check that qmod command is available
|
||||
try:
|
||||
subprocess.run(["qmod", "-h"], check=True, capture_output=True)
|
||||
subprocess.run(["qmod", "-help"], check=True, capture_output=True)
|
||||
except FileNotFoundError as exc:
|
||||
raise RuntimeError("qmod command not found. Please make sure that the grid engine client is installed and qmod command is available in the PATH.") from exc
|
||||
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
__version__ = '1.0.22'
|
||||
__version__ = '1.0.23'
|
||||
|
||||
|
||||
class Version(object):
|
||||
|
|
|
|||
Loading…
Reference in New Issue