mirror of
https://github.com/google/cpu_features.git
synced 2025-04-28 23:43:37 +02:00
8 lines
98 B
Bash
Executable File
8 lines
98 B
Bash
Executable File
#!/usr/bin/env bash
|
|
set -ex
|
|
|
|
rm -f ./*.svg ./*.png
|
|
for i in *.dot; do
|
|
plantuml -Tsvg "$i";
|
|
done
|