From d3382ec5187e542ee420c50d408df536fe37c865 Mon Sep 17 00:00:00 2001 From: Kyle Kroboth Date: Tue, 11 Mar 2025 23:58:30 -0400 Subject: [PATCH] fix: silent curl --- install/fileflows-install.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/install/fileflows-install.sh b/install/fileflows-install.sh index 69afefa..dc501cb 100644 --- a/install/fileflows-install.sh +++ b/install/fileflows-install.sh @@ -109,7 +109,7 @@ echo "ffmpeg UID: $FFMPEG_UID" FFPROBE_UID=$(curl -s -X 'GET' "http://localhost:19200/api/variable/name/ffprobe" -H 'accept: application/json' | jq -r '.Uid') echo "ffprobe UID: $FFPROBE_UID" -curl -X 'DELETE' \ +curl -s -X 'DELETE' \ "http://localhost:19200/api/variable" \ -H 'accept: */*' \ -H 'Content-Type: application/json' \ @@ -123,7 +123,7 @@ curl -X 'DELETE' \ FFMPEG_PATH=$(which ffmpeg) FFPROBE_PATH=$(which ffprobe) -curl -X 'POST' \ +curl -s -X 'POST' \ "http://localhost:19200/api/variable" \ -H 'accept: */*' \ -H 'Content-Type: application/json' \ @@ -132,7 +132,7 @@ curl -X 'POST' \ \"Value\": \"$FFMPEG_PATH\" }" -curl -X 'POST' \ +curl -s -X 'POST' \ "http://localhost:19200/api/variable" \ -H 'accept: */*' \ -H 'Content-Type: application/json' \