Skip to content

Commit bcc77b8

Browse files
author
nianiB9
committed
text update
1 parent 050a0ed commit bcc77b8

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

examples/Maestro/eg002EmbedWorkflow.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ workflow_id=$(cat config/WORKFLOW_ID)
1515

1616
# Step 2: Validate workflow ID exists
1717
if [ -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
2020
fi
2121

@@ -46,7 +46,7 @@ Status=$(curl -s -w "%{http_code}\n" -i --request POST \
4646

4747
# Step 7: Handle errors
4848
if [[ "$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
@@ -56,7 +56,7 @@ fi
5656
embed_url=$(grep '"url":' $response | sed -n 's/.*"url": "\([^"]*\)".*/\1/p')
5757

5858
echo ""
59-
echo "Embed URL successfully generated:"
59+
echo "Embed URL successfully generated:"
6060
echo "$embed_url"
6161

6262
echo ""

0 commit comments

Comments
 (0)