# install.sh is piped straight into `sh` from the Pages URL — a CRLF checkout # (or publish) would inject \r into every command. Pin LF end to end. installer/install.sh text eol=lf # Keep the PowerShell half deterministic too (PS tolerates either; the # published artifact should not depend on the publisher's autocrlf). installer/install.ps1 text eol=lf # The CI census/reap scripts run on the self-hosted runners, and the bash half runs on # kitsubito. A CRLF checkout would make every line end in \r there ("$'\r': command not # found") — the same failure install.sh is pinned against above, one directory over. Pin # the PowerShell half too, for the same determinism reason its installer sibling is pinned. .github/ci/reap-census.sh text eol=lf .github/ci/reap-census-selftest.sh text eol=lf .github/ci/reap-census.ps1 text eol=lf # The CI informant (CI-RUNNER-INFORMANT) runs on the Linux runner, same as the # reap-census bash half above and pinned for the same reason. .github/ci/ci-notify.sh text eol=lf