Ensure build of reference documentation is reproducible.

Signed-off-by: Chris Lamb <chris@chris-lamb.co.uk>
This commit is contained in:
Chris Lamb 2016-05-26 18:48:29 +01:00
parent dbcdc8a8ba
commit 8818d2fece
1 changed files with 2 additions and 2 deletions

View File

@ -49,7 +49,7 @@ The following global explorers are available:
eof
(
cd ../../cdist/conf/explorer
for explorer in *; do
for explorer in $(ls * | LC_ALL=C sort); do
echo "- $explorer"
done
)
@ -157,7 +157,7 @@ The following types are available:
eof
for type in man7/cdist-type__*.rst; do
for type in $(ls man7/cdist-type__*.rst | LC_ALL=C sort); do
no_dir="${type#man7/}";
no_type="${no_dir#cdist-type}";
name="${no_type%.rst}";