Skip to content
Snippets Groups Projects
Commit aa624886 authored by intrigeri's avatar intrigeri
Browse files

Now ignores vim's .swp files in /etc/backup.d/

parent 6b615487
No related branches found
No related tags found
No related merge requests found
......@@ -479,7 +479,7 @@ errormsg=""
if [ "$singlerun" ]; then
files=$singlerun
else
files=`find $configdirectory -mindepth 1 | sort -n`
files=`find $configdirectory ! -name '.*.swp' -mindepth 1 | sort -n`
fi
for file in $files; do
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment