Skip to content

Commit

Permalink
Merge pull request easybuilders#240 from branfosj/exit_c
Browse files Browse the repository at this point in the history
fix typo in example code for `run_shell_cmd`
  • Loading branch information
boegel authored Jan 29, 2024
2 parents de5805c + eb93e58 commit d6c90ef
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/easybuild-v5/run_shell_cmd.md
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ Examples:
cmd = "cmake --version"
res = run_shell_cmd(cmd, hidden=True, fail_on_error=False)
out = res.output
ec = res.code
ec = res.exit_code
```

## Transitioning from `run_cmd` to `run_shell_cmd`
Expand Down

0 comments on commit d6c90ef

Please sign in to comment.