You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
suricata/doc/devguide/tools/generate-images.sh

23 lines
502 B
Bash

#!/usr/bin/env bash
#
# Script to generate Sequence Diagram images with mscgen
#
set -e
cd extending/app-layer/diagrams
for FILE in *.msc ; do
# call mscgen and convert each file in images dir
echo "Generating image for $FILE"
mscgen -T png -F Arial $FILE
# if command fails, lets inform about that
if [ $? -ne 0 ]; then
echo "$FILE couldn't be converted in the devguide"
# let's exit to make it more evident something is amiss
exit 1
fi
done
exit 0