Skip to content
Snippets Groups Projects
Commit ef4bbe3c authored by micah's avatar micah :speech_balloon:
Browse files

Fixed error causing find to complain about not having -mindepth earlier

parent 1cb8c06d
No related branches found
No related tags found
No related merge requests found
......@@ -486,7 +486,7 @@ errormsg=""
if [ "$singlerun" ]; then
files=$singlerun
else
files=`find $configdirectory ! -name '.*.swp' -mindepth 1 | sort -n`
files=`find $configdirectory -mindepth 1 ! -name '.*.swp' | sort -n`
fi
for file in $files; do
......
removed erroneous magic file marker in pgsql handler
fixed insecure temporary file creation
fixed incorrect find positional
version 0.8 -- September 15 2005
added pgsql (PostgreSQL) handler, with vservers support.
added vservers support to duplicity handler
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment