view examples/build_examples.sh @ 559:aef949a87fc2

cargo fmt
author Lewin Bormann <lbo@spheniscida.de>
date Thu, 30 Jun 2022 21:22:29 -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