Files
packager/run-test-instance.sh

12 lines
217 B
Bash
Raw Normal View History

2023-08-29 21:34:00 +02:00
#!/usr/bin/env bash
2023-08-29 21:34:00 +02:00
cd $( cd -- "$( dirname -- "${BASH_SOURCE[0]}" )" &> /dev/null && pwd )
2023-08-29 21:34:00 +02:00
set -o nounset
port="${1}"
db="$(mktemp)"
2023-08-29 21:34:00 +02:00
exec ./target/debug/packager --port "${port}" --database-url "sqlite://${db}"