From a9cf2a0c7c58c086b54b6c762e4eaebff80d6fd7 Mon Sep 17 00:00:00 2001 From: bmaltais Date: Mon, 26 May 2025 18:39:36 -0400 Subject: [PATCH] Add message when --quiet is used --- gui-uv.sh | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/gui-uv.sh b/gui-uv.sh index c35f806..c6436d1 100755 --- a/gui-uv.sh +++ b/gui-uv.sh @@ -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[@]}"