Skip to content

Commit

Permalink
Fixing Issue #255 dos2unix corrupting Github dirs
Browse files Browse the repository at this point in the history
  • Loading branch information
TheWitness authored Mar 29, 2022
1 parent 327e3b1 commit 9135def
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion bootstrap
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,9 @@ rm -rf autom4te.cache .deps
# Make sure all files are unix formatted files
which dos2unix > /dev/null 2>&1
if [ $? -eq 0 ]; then
find . -type f -exec dos2unix --d2u \{\} \; > /dev/null 2>&1
find . -name \*.h -exec dos2unix {} \; > /dev/null 2>&1
find . -name \*.c -exec dos2unix {} \; > /dev/null 2>&1
find . -name \*.sh -exec dos2unix {} \; > /dev/null 2>&1
fi

# Prepare a build state
Expand Down

0 comments on commit 9135def

Please # to comment.