view examples/build_examples.sh @ 633:30f4cb027f6f

Some minor clippy fixes
author Lewin Bormann <lbo@spheniscida.de>
date Sat, 23 Dec 2023 15:58:22 +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