Add message when --quiet is used

pull/3263/head
bmaltais 2025-05-26 18:39:36 -04:00
parent 0524896383
commit a9cf2a0c7c
1 changed files with 4 additions and 0 deletions

View File

@ -47,5 +47,9 @@ if ! command -v uv &> /dev/null; then
fi
fi
if [[ "$uv_quiet" == "--quiet" ]]; then
echo "Notice: uv will run in quiet mode. No indication of the uv module download and install process will be displayed."
fi
git submodule update --init --recursive
uv run $uv_quiet kohya_gui.py --noverify "${args[@]}"