Update scripts/run_lpmm.sh

Co-authored-by: sourcery-ai[bot] <58596630+sourcery-ai[bot]@users.noreply.github.com>
pull/901/head
infinitycat 2025-05-01 01:14:35 +08:00 committed by GitHub
parent 58ceb3b911
commit c23a82af70
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -37,7 +37,7 @@ echo "============================"
run_python_script() {
local script_name=$1
echo "🔄 Running $script_name"
if ! python3 "scripts/$script_name"; then
if ! python3 "$SCRIPTS_DIR/$script_name"; then
echo "$script_name failed" >&2
exit 1
fi