diff options
author | Micah Anderson <micah@riseup.net> | 2005-09-28 14:57:17 +0000 |
---|---|---|
committer | Micah Anderson <micah@riseup.net> | 2005-09-28 14:57:17 +0000 |
commit | ef4bbe3c2bb4af4c2a77e00f2ca0e8971847c0bd (patch) | |
tree | 4a2ccabcff318ab60a64824cae702200892f66dc | |
parent | 1cb8c06d78706597e86f2035aa6324465c49d471 (diff) | |
download | backupninja-ef4bbe3c2bb4af4c2a77e00f2ca0e8971847c0bd.tar.gz backupninja-ef4bbe3c2bb4af4c2a77e00f2ca0e8971847c0bd.tar.bz2 |
Fixed error causing find to complain about not having -mindepth earlier
-rwxr-xr-x | backupninja | 2 | ||||
-rw-r--r-- | changelog | 1 |
2 files changed, 2 insertions, 1 deletions
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 @@ -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 |