Skip to content
Snippets Groups Projects
Commit 79424ea7 authored by RIETTE Sébastien's avatar RIETTE Sébastien
Browse files

Exclude .*.swo file from mnh expansion

parent 31a79f57
No related branches found
No related tags found
No related merge requests found
......@@ -197,7 +197,7 @@ if [ -n "${mnh_expand_options-}" ]; then
for rep in $reps; do
if [ -d $rep ]; then
#find $rep -type f | while read file; do
find $rep -type f -not -name '.*.swp' | while read file; do
find $rep -type f -not -name '.*.swp' -not -name '.*.swo' | while read file; do
apply_mnh_expand "$file"
done
fi
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment