view examples/build_examples.sh @ 535:ddd1e4e8d531

Exclude windows from automated builds 'cause I don't like it
author Lewin Bormann <lbo@spheniscida.de>
date Thu, 15 Oct 2020 14:33:10 +0200
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