mirror of
https://github.com/tursodatabase/limbo.git
synced 2025-07-07 12:35:00 +00:00
8 lines
193 B
Bash
Executable file
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
|