limbo/scripts/limbo-sqlite3

8 lines
189 B
Bash
Executable file

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