Skip to content
Snippets Groups Projects
Commit fb77e731 authored by elijah's avatar elijah
Browse files

fixed bug where config files were run in order of

time created instead of in numeric order.
parent 76711771
Branches
Tags
No related merge requests found
......@@ -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
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment