File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ workflow_id=$(cat config/WORKFLOW_ID)
1515
1616# Step 2: Validate workflow ID exists
1717if [ -z " $workflow_id " ]; then
18- echo " ❌ ERROR: No workflow ID found. Please run the trigger workflow script first."
18+ echo " No workflow ID found. Please run the trigger workflow script first."
1919 exit 1
2020fi
2121
@@ -46,7 +46,7 @@ Status=$(curl -s -w "%{http_code}\n" -i --request POST \
4646
4747# Step 7: Handle errors
4848if [[ " $Status " -gt " 201" ]]; then
49- echo " ❌ ERROR: Failed to generate embed URL"
49+ echo " Failed to generate embed URL"
5050 cat $response
5151 rm " $request_data " " $response "
5252 exit 1
5656embed_url=$( grep ' "url":' $response | sed -n ' s/.*"url": "\([^"]*\)".*/\1/p' )
5757
5858echo " "
59- echo " ✅ Embed URL successfully generated:"
59+ echo " Embed URL successfully generated:"
6060echo " $embed_url "
6161
6262echo " "
You can’t perform that action at this time.
0 commit comments