|
|
@ -1,7 +1,12 @@
|
|
|
|
#!/bin/sh
|
|
|
|
#!/bin/sh
|
|
|
|
#
|
|
|
|
#
|
|
|
|
# Calls astyle with settings matching Calamares coding style
|
|
|
|
# Calls astyle with settings matching Calamares coding style
|
|
|
|
# Requires astyle >= 2.04 and clang-format-7
|
|
|
|
# Requires astyle >= 2.04 and clang-format-7 -8 or -9
|
|
|
|
|
|
|
|
#
|
|
|
|
|
|
|
|
# Clang-format-10 is **not** supported, since it changes a default
|
|
|
|
|
|
|
|
# that re-introduces a space into empty function bodies; this
|
|
|
|
|
|
|
|
# can be turned off with a style setting, but that breaks
|
|
|
|
|
|
|
|
# older format versions which don't recognize the setting.
|
|
|
|
#
|
|
|
|
#
|
|
|
|
# You can pass in directory names, in which case the files
|
|
|
|
# You can pass in directory names, in which case the files
|
|
|
|
# in that directory (NOT below it) are processed.
|
|
|
|
# in that directory (NOT below it) are processed.
|
|
|
@ -38,8 +43,10 @@ done
|
|
|
|
|
|
|
|
|
|
|
|
style_some()
|
|
|
|
style_some()
|
|
|
|
{
|
|
|
|
{
|
|
|
|
|
|
|
|
if test -n "$*" ; then
|
|
|
|
$AS --options=$(dirname $0)/astylerc --quiet "$@"
|
|
|
|
$AS --options=$(dirname $0)/astylerc --quiet "$@"
|
|
|
|
$CF -i -style=file "$@"
|
|
|
|
$CF -i -style=file "$@"
|
|
|
|
|
|
|
|
fi
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
if test "x$any_dirs" = "xyes" ; then
|
|
|
|
if test "x$any_dirs" = "xyes" ; then
|
|
|
|