reseg: sort dirs

Signed-off-by: John McMaster <JohnDMcMaster@gmail.com>
This commit is contained in:
John McMaster 2018-12-21 13:46:38 -08:00
parent 49eb2549f9
commit c0f375fc52
1 changed files with 2 additions and 2 deletions

View File

@ -7,13 +7,13 @@ set -ex
FUZDIR=$PWD
pushd build
for f in $(find -name design.bits) ; do
for f in $(find -name design.bits |sort) ; do
pushd $(dirname $f)
python3 $FUZDIR/generate.py
popd
done
popd
${XRAY_SEGMATCH} -o build/tmp.segbits $(find build -name 'segdata_*.txt')
${XRAY_SEGMATCH} -o build/tmp.segbits $(find build -name 'segdata_*.txt' |sort)
cat build/tmp.segbits