Skip to content

Commit 2d357c5

Browse files
committed
fix dry run for openssl_wrapper
1 parent 3d21594 commit 2d357c5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

easybuild/easyblocks/o/openssl_wrapper.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -422,7 +422,7 @@ def get_openssl_bin_version(self, bin_name):
422422
return None, None
423423

424424
cmd = "%s version" % bin_path
425-
res = run_shell_cmd(cmd, fail_on_error=False, hidden=True)
425+
res = run_shell_cmd(cmd, fail_on_error=False, hidden=True, in_dry_run=True)
426426

427427
try:
428428
bin_version = res.output.split(' ')[1]

0 commit comments

Comments
 (0)