mirror of
https://0xacab.org/liberate/backupninja.git
synced 2024-11-08 11:52:32 +01:00
fixed bug where config files were run in order of
time created instead of in numeric order.
This commit is contained in:
parent
76711771db
commit
fb77e73173
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user