https://bugs.kde.org/show_bug.cgi?id=512142
[email protected] changed: What |Removed |Added ---------------------------------------------------------------------------- Status|REPORTED |RESOLVED Version| |8.9.0 Fixed/Implemented| | In| | Latest Commit| |https://invent.kde.org/docu | |mentation/digikam-doc/-/com | |mit/b4eb097064115709825f688 | |2d4fffee29f61b90e CC| |[email protected] Resolution|--- |FIXED --- Comment #1 from [email protected] --- Git commit b4eb097064115709825f6882d4fffee29f61b90e by Gilles Caulier. Committed on 22/11/2025 at 15:59. Pushed by cgilles into branch 'master'. remove double quote around file paths in the proof of concept script to handle paths with spaces. M +1 -1 batch_queue/custom_script.rst https://invent.kde.org/documentation/digikam-doc/-/commit/b4eb097064115709825f6882d4fffee29f61b90e diff --git a/batch_queue/custom_script.rst b/batch_queue/custom_script.rst index ae02b7466..124c7dd3f 100644 --- a/batch_queue/custom_script.rst +++ b/batch_queue/custom_script.rst @@ -96,7 +96,7 @@ This first example shown below does nothing special. It prints on the console th echo "RATING: $RATING" echo "TAGSPATH: $TAGSPATH" - cp "$INPUT" "$OUTPUT" + cp $INPUT $OUTPUT exit $? If you have started digiKam from a terminal and enabled the debug traces on :ref:`Setting/Miscellaneous/System dialog page <system_settings>`, you will see something like this: -- You are receiving this mail because: You are watching all bug changes.
