view examples/build_examples.sh @ 547:c29852db909a

Update integer-encoding crate to 3.0 There will be some fix-ups to make error handling more useful.
author Lewin Bormann <lbo@spheniscida.de>
date Sat, 05 Mar 2022 12:53:45 +0100
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