From bac2dcf24d9060b911e0651f4b438abf88689f9f Mon Sep 17 00:00:00 2001 From: elijah Date: Fri, 8 Apr 2005 17:02:52 +0000 Subject: [PATCH] fixed bug where config files were run in order of time created instead of in numeric order. git-svn-id: http://code.autistici.org/svn/backupninja/trunk@100 758a04ac-41e6-0310-8a23-8373a73cc35d --- backupninja | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 -- 2.30.2