From 58cb1e8d5e88464d0ed4e20504ed07771ad34e6d Mon Sep 17 00:00:00 2001 From: Maxime Van Hees Date: Fri, 22 Aug 2025 16:54:43 +0200 Subject: [PATCH] fixed test not running due to misaligned path --- herodb/test_herodb.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/herodb/test_herodb.sh b/herodb/test_herodb.sh index bbd72d9..f5a5443 100755 --- a/herodb/test_herodb.sh +++ b/herodb/test_herodb.sh @@ -298,7 +298,7 @@ main() { # Start the server print_status "Starting HeroDB server..." - ./target/release/herodb --dir "$DB_DIR" --port $PORT & + ../target/release/herodb --dir "$DB_DIR" --port $PORT & SERVER_PID=$! # Wait for server to start @@ -352,4 +352,4 @@ check_dependencies() { # Run dependency check and main function check_dependencies -main "$@" \ No newline at end of file +main "$@"