mirror of
https://github.com/ParadiseSS13/Paradise.git
synced 2026-08-23 03:57:13 +01:00
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:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user