mirror of
https://github.com/tursodatabase/limbo.git
synced 2025-08-04 01:58:16 +00:00
12 lines
195 B
Bash
Executable file
12 lines
195 B
Bash
Executable file
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
if [[ -n "$@" ]]; then
|
|
cargo run -p limbo_sim -- "$@"
|
|
else
|
|
echo "Running limbo_sim in infinite loop..."
|
|
while true; do
|
|
cargo run -p limbo_sim
|
|
done
|
|
fi
|