Skip to content

Commit c3cb956

Browse files
committed
Fix bin/setup conductor-exec routing condition
1 parent 4909a32 commit c3cb956

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

bin/setup

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ ROOT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")/.." && pwd)"
55
cd "$ROOT_DIR"
66

77
run_cmd() {
8-
if [[ -x "$ROOT_DIR/bin/conductor-exec" ]]; then
8+
if command -v mise >/dev/null 2>&1 && [[ -x "$ROOT_DIR/bin/conductor-exec" ]]; then
99
"$ROOT_DIR/bin/conductor-exec" "$@"
1010
else
1111
"$@"

0 commit comments

Comments
 (0)