Properly enforced LF in DMAPI Updater (#14747)

* Properly enforced LF in DMAPI Updater

* Force license and README to LF while I am at it
This commit is contained in:
AffectedArc07
2020-10-27 11:41:50 -04:00
committed by GitHub
parent ec4d4fb604
commit 2df4a0c0f1
6 changed files with 64 additions and 56 deletions
+8
View File
@@ -19,12 +19,20 @@ jobs:
git checkout tgs-dmapi-update
git reset --hard master
- name: Install Deps
run: sudo apt install dos2unix
- name: Apply DMAPI update
uses: tgstation/tgs-dmapi-updater@v2
with:
header-path: 'code/__DEFINES/tgs.dm'
library-path: 'code/modules/tgs'
- name: Convert From CRLF To LF
run: |
dos2unix code/__DEFINES/tgs.dm
find code/modules/tgs -type f -print0 | xargs -0 dos2unix --
- name: Commit and Push
run: |
git config --local core.eol lf