Ensure build of reference documentation is reproducible.
Signed-off-by: Chris Lamb <chris@chris-lamb.co.uk>
This commit is contained in:
parent
dbcdc8a8ba
commit
8818d2fece
1 changed files with 2 additions and 2 deletions
|
@ -49,7 +49,7 @@ The following global explorers are available:
|
||||||
eof
|
eof
|
||||||
(
|
(
|
||||||
cd ../../cdist/conf/explorer
|
cd ../../cdist/conf/explorer
|
||||||
for explorer in *; do
|
for explorer in $(ls * | LC_ALL=C sort); do
|
||||||
echo "- $explorer"
|
echo "- $explorer"
|
||||||
done
|
done
|
||||||
)
|
)
|
||||||
|
@ -157,7 +157,7 @@ The following types are available:
|
||||||
|
|
||||||
eof
|
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_dir="${type#man7/}";
|
||||||
no_type="${no_dir#cdist-type}";
|
no_type="${no_dir#cdist-type}";
|
||||||
name="${no_type%.rst}";
|
name="${no_type%.rst}";
|
||||||
|
|
Loading…
Reference in a new issue