bevy/tools/example_showcase.sh
Rémi Lauzier fafee8898e Small script fix (#2591)
# Objective
Prevent some possible problem
Found by IntelliJ IDEA

## Solution

Double quoting variable and exit on possible failure of cd command.
2021-08-13 21:57:23 +00:00

18 lines
496 B
Bash

#!/bin/bash
duration='2'
function wait_seconds() { perl -e 'alarm shift; exec @ARGV' "$@"; }
run_example() {
cargo build --example "$1"
wait_seconds "$duration" cargo run --example "$1"
}
example_list="$(cargo build --example 2>&1)"
example_list=${example_list//$'\n'/}
example_list="${example_list#error\: \"--example\" takes one argument.Available examples\: }"
echo "$example_list"
for example in $example_list
do
echo "Running example: $example"
run_example "$example"
done