mirror of
https://github.com/aljazceru/turso.git
synced 2025-12-17 08:34:19 +01:00
9 lines
193 B
Bash
Executable File
9 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
|