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
No related branches found
No related tags found
No related merge requests found
...@@ -429,7 +429,7 @@ errormsg="" ...@@ -429,7 +429,7 @@ errormsg=""
if [ "$singlerun" ]; then if [ "$singlerun" ]; then
files=$singlerun files=$singlerun
else else
files=`find $configdirectory -mindepth 1 ` files=`find $configdirectory -mindepth 1 | sort -n`
fi fi
for file in $files; do 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