From: Micah Anderson Date: Wed, 28 Sep 2005 14:57:17 +0000 (+0000) Subject: Fixed error causing find to complain about not having -mindepth earlier X-Git-Tag: backupninja-0.9~8 X-Git-Url: https://git.stderr.nl/gitweb?p=matthijs%2Fupstream%2Fbackupninja.git;a=commitdiff_plain;h=ef4bbe3c2bb4af4c2a77e00f2ca0e8971847c0bd Fixed error causing find to complain about not having -mindepth earlier --- diff --git a/backupninja b/backupninja index b91d2c8..ea7304e 100755 --- a/backupninja +++ b/backupninja @@ -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 diff --git a/changelog b/changelog index 8ba0ab5..46227d4 100644 --- a/changelog +++ b/changelog @@ -1,5 +1,6 @@ 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