view examples/build_examples.sh @ 536:8e946f23a307

Remove obsolete comment
author Lewin Bormann <lbo@spheniscida.de>
date Thu, 11 Feb 2021 12:02:08 +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