aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorElijah Saxon <elijah@riseup.net>2005-04-08 17:02:52 +0000
committerElijah Saxon <elijah@riseup.net>2005-04-08 17:02:52 +0000
commitfb77e731737f3ca96f1295f9ee1f9f58278da84e (patch)
tree3fb79b9d8cbec44ba08e4a8f5b556a23fa3295c9
parent76711771db7c1f38a765aa985010aa50bd24047b (diff)
downloadbackupninja-fb77e731737f3ca96f1295f9ee1f9f58278da84e.tar.gz
backupninja-fb77e731737f3ca96f1295f9ee1f9f58278da84e.tar.bz2
fixed bug where config files were run in order of
time created instead of in numeric order.
-rwxr-xr-xbackupninja2
1 files changed, 1 insertions, 1 deletions
diff --git a/backupninja b/backupninja
index b7d4a14..ac504d6 100755
--- a/backupninja
+++ b/backupninja
@@ -429,7 +429,7 @@ errormsg=""
if [ "$singlerun" ]; then
files=$singlerun
else
- files=`find $configdirectory -mindepth 1 `
+ files=`find $configdirectory -mindepth 1 | sort -n`
fi
for file in $files; do