We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4137d59 commit b36872aCopy full SHA for b36872a
CHANGELOG.md
@@ -2,6 +2,8 @@
2
3
## Unreleased
4
5
+- Fix condition when providing a custom command.
6
+
7
## Version 0.2.0
8
9
- Allow quiet and debug modes.
manage-ghar
@@ -64,7 +64,8 @@ start () {
64
cd "$runner_path"
65
66
# check if runner command is valid
67
- if ! ([[ -x "$runner_command" ]] || type "$runner_command" >/dev/null 2>&1)
+ # i.e., the command is executable and exists
68
+ if ! ([[ -x "$runner_command" ]] || ! type "$runner_command" >/dev/null 2>&1)
69
then
70
message_error "Runner command $runner_command is invalid"
71
return 12
0 commit comments