mirror of
https://github.com/langgenius/dify.git
synced 2026-05-26 20:07:46 +08:00
Co-authored-by: GareArc <garethcxy@dify.ai> Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com> Co-authored-by: autofix-ci[bot] <114827586+autofix-ci[bot]@users.noreply.github.com> Co-authored-by: L1nSn0w <l1nsn0w@qq.com> Co-authored-by: Claude Opus 4.7 (1M context) <noreply@anthropic.com> Co-authored-by: gigglewang <gigglewang@dify.ai> Co-authored-by: Copilot Autofix powered by AI <62310815+github-advanced-security[bot]@users.noreply.github.com> Co-authored-by: Xiyuan Chen <52963600+GareArc@users.noreply.github.com>
12 lines
487 B
Plaintext
12 lines
487 B
Plaintext
# Ensure that .sh scripts use LF as line separator, even if they are checked out
|
|
# to Windows(NTFS) file-system, by a user of Docker for Windows.
|
|
# These .sh scripts will be run from the Container after `docker compose up -d`.
|
|
# If they appear to be CRLF style, Dash from the Container will fail to execute
|
|
# them.
|
|
|
|
*.sh text eol=lf
|
|
|
|
# Codegen output must stay byte-identical across platforms so
|
|
# `pnpm tree:check` in CI does not trip on CRLF rewrites.
|
|
*.generated.ts text eol=lf
|