Don't change date when dos2unix'ing files

This commit is contained in:
Matthias Kuhn 2015-09-02 07:55:38 +02:00 committed by Denis Rouzaud
parent 62c0ef9ec8
commit 26e9783023

View File

@ -29,16 +29,16 @@ if [ -z "$ASTYLE" ]; then
fi
if ! type -p flip >/dev/null; then
if type -p dos2unix >/dev/null; then
flip() {
dos2unix $2
}
else
echo "flip not found" >&2
flip() {
:
}
fi
if type -p dos2unix >/dev/null; then
flip() {
dos2unix -k $2
}
else
echo "flip not found" >&2
flip() {
:
}
fi
fi
if ! type -p autopep8 >/dev/null; then