Merge "Fix cross-platform for checkniceness test"
This commit is contained in:
commit
b83b7b6c64
@ -3,10 +3,11 @@
|
|||||||
# Check that doc/common/glossary entries are alphabetized and prints
|
# Check that doc/common/glossary entries are alphabetized and prints
|
||||||
# list of entries that should be sorted.
|
# list of entries that should be sorted.
|
||||||
|
|
||||||
export TMPDIR=`/bin/mktemp -d`
|
# Cross-platform (Mac and Linux) commands to make a temporary working directory
|
||||||
trap "rm -rf $TMPDIR" EXIT
|
thetmpdir=`mktemp -d 2>/dev/null || mktemp -d -t 'thetmpdir'`
|
||||||
|
trap "rm -rf $thetmpdir" EXIT
|
||||||
|
|
||||||
pushd $TMPDIR
|
pushd $thetmpdir
|
||||||
GLOSSARY=$OLDPWD/doc/common/glossary.rst
|
GLOSSARY=$OLDPWD/doc/common/glossary.rst
|
||||||
|
|
||||||
grep '^ [a-zA-Z0-9]' $GLOSSARY > glossary_entries
|
grep '^ [a-zA-Z0-9]' $GLOSSARY > glossary_entries
|
||||||
|
Loading…
x
Reference in New Issue
Block a user