limbo/scripts/limbo-sqlite3
2025-06-26 21:05:02 +03:00

8 lines
193 B
Bash
Executable file

#!/bin/bash
# if RUST_LOG is non-empty, enable tracing output
if [ -n "$RUST_LOG" ]; then
target/debug/tursodb -m list -t testing/test.log "$@"
else
target/debug/tursodb -m list "$@"
fi