fix: move smoke testing working dir

This commit is contained in:
Constrat
2025-09-13 14:55:15 +02:00
parent 2c87975e52
commit dcd2d52a5a
2 changed files with 23 additions and 23 deletions

View File

@@ -4,12 +4,12 @@ set -e
clients=("Official" "YoStarJP" "YoStarEN" "YoStarKR" "txwy")
error_clients=()
log_dir="./install/debug"
log_dir="./debug"
mkdir -p "$log_dir"
declare -A pids
for client in "${clients[@]}"; do
./install/smoke_test "$client" > "$log_dir/asst_${client}.log" 2>&1 &
./smoke_test "$client" > "$log_dir/asst_${client}.log" 2>&1 &
pids["$client"]=$!
done