mirror of
https://github.com/systemd/systemd.git
synced 2024-12-22 17:35:35 +03:00
coccinelle: add option to make changes in place
This commit is contained in:
parent
31d31f2021
commit
00bfe67f6b
@ -1,12 +1,20 @@
|
||||
#!/bin/bash -e
|
||||
|
||||
files="$(git ls-files ':/*.[ch]')"
|
||||
args=
|
||||
|
||||
case "$1" in
|
||||
-i)
|
||||
args="$args --in-place"
|
||||
shift
|
||||
;;
|
||||
esac
|
||||
|
||||
for SCRIPT in ${@-coccinelle/*.cocci} ; do
|
||||
echo "--x-- Processing $SCRIPT --x--"
|
||||
TMPFILE=`mktemp`
|
||||
echo "+ spatch --sp-file $SCRIPT ..."
|
||||
spatch --sp-file $SCRIPT $files 2>"$TMPFILE" || cat "$TMPFILE"
|
||||
echo "+ spatch --sp-file $SCRIPT $args ..."
|
||||
spatch --sp-file $SCRIPT $args $files 2>"$TMPFILE" || cat "$TMPFILE"
|
||||
rm "$TMPFILE"
|
||||
echo -e "--x-- Processed $SCRIPT --x--\n"
|
||||
done
|
||||
|
Loading…
Reference in New Issue
Block a user