view examples/build_examples.sh @ 556:19d57fc3adea

Fix tests with fixed offsets
author Lewin Bormann <lbo@spheniscida.de>
date Thu, 30 Jun 2022 21:20:18 -0700
parents a32463dc4cb2
children
line wrap: on
line source

#!/bin/bash

set -e

for D in `find examples/ -maxdepth 1 -mindepth 1 -type d`;
do
    pushd ${D}
    cargo build
    popd
done