view examples/build_examples.sh @ 637:2e83675d5c47

Add more comment about Mojang's implementation
author kaiyohugo <41114603+KAIYOHUGO@users.noreply.github.com>
date Wed, 15 May 2024 20:09:53 +0800
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