ON THIS PAGE

  • CRLF Windows issue

CRLF Windows issue

If you are on Windows you might encounter the error below when starting apps:
Command Line
1runsv backend: fatal: unable to start ./run: file does not exist
This is usually caused by newline mismatches. For now, all text files—especially bash scripts—should use LF line endings because bash cannot handle CRLF. Configure your IDE/editor to enforce LF and convert the repo to LF line endings, then retry. An oak-agent feature to auto-convert line endings is planned but not available yet.To keep git aligned with LF on Windows, set:
Command Line
1git config core.autocrlf false
2git config core.eol lf