From 4c29f880698fd8d08055da2705194bb9676de91d Mon Sep 17 00:00:00 2001 From: Andrey Skvortsov Date: Wed, 28 May 2025 23:21:15 +0300 Subject: [PATCH] postprocess: fix empty filename for UVC cameras filename printed to stdout is used to bind to open filename button. Without this nothing opened, when button was clicked. --- data/postprocess.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/data/postprocess.sh b/data/postprocess.sh index 1fd3706..c1ee615 100755 --- a/data/postprocess.sh +++ b/data/postprocess.sh @@ -33,6 +33,7 @@ MAIN_PICTURE="$BURST_DIR"/1 if [ -f "$MAIN_PICTURE.jpg" ]; then # Just move over the main jpeg if this was a YUV capture cp "$MAIN_PICTURE.jpg" "$TARGET_NAME.jpg" + echo "$TARGET_NAME.jpg" # Clean up the temp dir containing the burst rm -rf "$BURST_DIR"