c329fc916e
fix hex gen from relative invocation path
17 lines
230 B
Bash
Executable File
17 lines
230 B
Bash
Executable File
#!/bin/bash
|
|
|
|
subdir='docs/data'
|
|
datdir="${PWD}/${subdir}"
|
|
|
|
${datdir}/parse.py
|
|
|
|
for t in 'simple' 'multi';
|
|
do
|
|
for r in 'request' 'response';
|
|
do
|
|
git add ${subdir}/${r}.${t}.hex
|
|
done
|
|
done
|
|
|
|
echo "Regenerated hex representations"
|