mirror of
https://github.com/emilk/egui.git
synced 2026-06-26 22:53:14 -04:00
12 lines
234 B
Bash
Executable File
12 lines
234 B
Bash
Executable File
#!/usr/bin/env bash
|
|
set -eu
|
|
script_path=$( cd "$(dirname "${BASH_SOURCE[0]}")" ; pwd -P )
|
|
cd "$script_path/"
|
|
set -x
|
|
|
|
for example_name in *; do
|
|
if [ -d "$example_name" ]; then
|
|
cargo run --quiet -p $example_name
|
|
fi
|
|
done
|