view examples/build_examples.sh @ 544:aeebdeb1c5ec

Merge pull request #10 from shangsony/patch-1 Update skipmap.rs
author Lewin Bormann <lbo@spheniscida.de>
date Thu, 02 Sep 2021 18:48:00 +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