You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Run recipes from a script file instead of an inline heredoc
The run recipe was fed into the interactive shell as a `bash <<'JCRUN'`
heredoc, so bash echoed every line back with its `>` continuation prompt —
dumping the whole ~30-line recipe into the run terminal before any output
appeared. Write the recipe to <project>/.jcode/run.sh and invoke it with a
single `bash <path>` line instead (the script is read, not executed, so the
noexec /workspace mount is fine). The terminal now shows just the clean
[1/5]..[5/5] step echoes. Falls back to the inline heredoc if the script
cannot be written.
Pairs with the earlier npm_config_progress=false fix; together the run
terminal renders cleanly. Verified on device: no recipe dump, no progress-
bar garbage, build/run still serves at localhost:5080.
Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
0 commit comments