Merge pull request #219 from crumblingstatue/astyle-options-none

runastyle: Ignore user's default options file
This commit is contained in:
Daniel Marjamäki 2014-01-15 22:17:39 -08:00
commit fb4695fcb4
1 changed files with 1 additions and 1 deletions

View File

@ -14,7 +14,7 @@ if [[ "`astyle --version 2>&1`" != ${ASTYLE_VERSION}* ]]; then
fi fi
style="--style=stroustrup --indent=spaces=4 --indent-namespaces --lineend=linux --min-conditional-indent=0" style="--style=stroustrup --indent=spaces=4 --indent-namespaces --lineend=linux --min-conditional-indent=0"
options="--pad-header --unpad-paren --suffix=none --convert-tabs" options="--options=none --pad-header --unpad-paren --suffix=none --convert-tabs"
astyle $style $options cli/*.cpp astyle $style $options cli/*.cpp
astyle $style $options cli/*.h astyle $style $options cli/*.h