add sanitization of m32rx PIPE attribute, redact can do this more cleanly
This commit is contained in:
parent
249da91694
commit
0a7fed0d58
1 changed files with 3 additions and 1 deletions
|
@ -454,7 +454,9 @@ else
|
|||
echo Removing traces of \"m32rx\" from $i...
|
||||
fi
|
||||
cp $i new
|
||||
sed '/start\-sanitize\-m32rx/,/end\-sanitize\-m32rx/d' < $i > new
|
||||
# The PIPE sanitization will be much cleaner with redact.
|
||||
sed -e '/start\-sanitize\-m32rx/,/end\-sanitize\-m32rx/d' \
|
||||
-e 's/, PIPE_[A-Z]*//g' < $i > new
|
||||
if [ -n "${safe}" -a ! -f .Recover/$i ] ; then
|
||||
if [ -n "${verbose}" ] ; then
|
||||
echo Caching $i in .Recover...
|
||||
|
|
Loading…
Reference in a new issue