view examples/build_examples.sh @ 561:a843b5782dc8

Update README
author Lewin Bormann <lbo@spheniscida.de>
date Thu, 30 Jun 2022 22:10:53 -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