Mise runs task scripts in a child process group that is not the terminal's foreground group. When dagger detects a TTY it tries to render its TUI, triggering SIGTTOU which stops the process. Adding --progress=plain to all dagger call sites avoids terminal ioctls. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
6 lines
170 B
Bash
Executable file
6 lines
170 B
Bash
Executable file
#!/usr/bin/env bash
|
|
#MISE description="Validate Forgejo workflow files against runner schema"
|
|
|
|
set -euo pipefail
|
|
|
|
dagger call --progress=plain validate-workflows --src=.
|