File tree Expand file tree Collapse file tree 7 files changed +20
-6
lines changed
Expand file tree Collapse file tree 7 files changed +20
-6
lines changed Original file line number Diff line number Diff line change @@ -99,4 +99,4 @@ More information can be found in the [Wiki][22].
9999[ 20 ] : https://code.visualstudio.com/
100100[ 21 ] : https://github.com/coq-community/vscoq
101101
102- [ 22 ] : https://github.com/HoTT/HoTT/wiki
102+ [ 22 ] : https://github.com/HoTT/HoTT/wiki
Original file line number Diff line number Diff line change 1+ #! /bin/bash
2+
3+ # This command fixes the end-of-file newlines for all files in the repository.
4+
5+ while IFS= read -r file; do
6+ # Check if the file is a regular file
7+ if [ -f " $file " ]; then
8+ if [ -n " $( tail -c 1 " $file " ) " ]; then
9+ echo " Adding newline to file: $file "
10+ echo >> " $file "
11+ git add " $file "
12+ fi
13+ fi
14+ done < <( git ls-files)
Original file line number Diff line number Diff line change @@ -2,4 +2,4 @@ Require Export Cubical.DPath.
22Require Export Cubical.PathSquare.
33Require Export Cubical.DPathSquare.
44Require Export Cubical.PathCube.
5- Require Export Cubical.DPathCube.
5+ Require Export Cubical.DPathCube.
Original file line number Diff line number Diff line change 3232 srapply Build_Cocone.
3333 1: intros []; [exact (q o f) | exact q].
3434 intros [] [] []; [reflexivity | exact Hq].
35- Defined .
35+ Defined .
Original file line number Diff line number Diff line change @@ -33,4 +33,4 @@ Section Span.
3333 + exact g.
3434 Defined .
3535
36- End Span.
36+ End Span.
Original file line number Diff line number Diff line change 11Require Export HoTT.Spaces.Int.Core.
22Require Export HoTT.Spaces.Int.Spec.
33Require Export HoTT.Spaces.Int.Equiv.
4- Require Export HoTT.Spaces.Int.LoopExp.
4+ Require Export HoTT.Spaces.Int.LoopExp.
Original file line number Diff line number Diff line change 11Require Export HoTT.Spaces.Pos.Core.
2- Require Export HoTT.Spaces.Pos.Spec.
2+ Require Export HoTT.Spaces.Pos.Spec.
You can’t perform that action at this time.
0 commit comments