Keep ci-release.sh at LF so it runs on the Gitea runner

Git was set to normalize to CRLF on checkout, which puts a carriage return in the
shebang and breaks the script on Linux. Also documents what User/ holds.
This commit is contained in:
max
2026-09-07 19:35:36 +02:00
parent d45639bf2f
commit 0405c13791
2 changed files with 15 additions and 0 deletions
+6
View File
@@ -0,0 +1,6 @@
# Shell scripts must keep LF: a CR in the shebang or in a command breaks bash on Linux.
*.sh text eol=lf
# PowerShell is happy either way, but keep the working tree native on Windows.
*.ps1 text eol=crlf
*.cmd text eol=crlf
+9
View File
@@ -0,0 +1,9 @@
Settings tracked here by scripts/settings.ps1:
- settings.json
- keybindings.json
- tasks.json
- snippets/
- extensions.txt (marketplace extension ids)
Run `.\scripts\settings.ps1 -Push` on the machine whose setup you want to keep.