代码拉取完成,页面将自动刷新
#!/bin/bash
DIR=$1
COMMIT=$2
function do_commit {
if [ $COMMIT == 1 ] ;then
git commit $1 --author="uncrustify <pat@moreproductive.org>" \
--message="uncrustify $1";
fi
}
function format_cpp {
echo 'format_cpp' $1
uncrustify --no-backup -c uncrustify_cpp.cfg $1
do_commit $1
}
function format_header {
echo 'format_header' $1
uncrustify --no-backup -c uncrustify_headers.cfg $1
do_commit $1
}
PDEFILES=`find $DIR -name '*.pde' -print`
CPPFILES=`find $DIR -name '*.cpp' -print`
CFILES=`find $DIR -name '*.c' -print`
HFILES=`find $DIR -name '*.h' -print`
for f in $PDEFILES $CPPFILES $CFILES; do
format_cpp $f
done
for f in $HFILES; do
format_header $f
done
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。